This commit is contained in:
ThomasV 2016-10-16 22:17:52 +02:00
parent 96016a9ee8
commit 84f17c2ede
1 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ import os
import json
from StringIO import StringIO
from electrum.storage import WalletStorage
from electrum.storage import WalletStorage, FINAL_SEED_VERSION
class FakeSynchronizer(object):
@ -55,9 +55,9 @@ class TestWalletStorage(WalletTestCase):
storage = WalletStorage(self.wallet_path)
some_dict = {
u"a": u"b",
u"c": u"d",
u"seed_version": 12}
u"a": u"b",
u"c": u"d",
u"seed_version": FINAL_SEED_VERSION}
for key, value in some_dict.items():
storage.put(key, value)