use libsecp256k1 if available. abstract away ecc stuff. move symmetric crypto and hash functions to crypto.py
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user