electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 84f17c2ede5a9fd14a9caa7ec943fac6266d4546
parent 96016a9ee8d6e5198659e682d823fbe44e140f98
Author: ThomasV <thomasv@electrum.org>
Date:   Sun, 16 Oct 2016 22:17:52 +0200

fix test

Diffstat:
Mlib/tests/test_wallet.py | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/tests/test_wallet.py b/lib/tests/test_wallet.py @@ -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)