1
0

use libsecp256k1 if available. abstract away ecc stuff. move symmetric crypto and hash functions to crypto.py

This commit is contained in:
SomberNight
2018-05-24 18:57:13 +02:00
parent 756cc323e7
commit 16e4827e8c
28 changed files with 1085 additions and 537 deletions

View File

@@ -8,6 +8,8 @@ import json
from io import StringIO
from lib.storage import WalletStorage, FINAL_SEED_VERSION
from . import SequentialTestCase
class FakeSynchronizer(object):
@@ -18,7 +20,7 @@ class FakeSynchronizer(object):
self.store.append(address)
class WalletTestCase(unittest.TestCase):
class WalletTestCase(SequentialTestCase):
def setUp(self):
super(WalletTestCase, self).setUp()