Jonathan Cross
8 years ago
No known key found for this signature in database
GPG Key ID: D8578DF8EA7CCF1B
1 changed files with
4 additions and
1 deletions
-
lib/tests/test_wallet.py
|
|
@ -54,7 +54,10 @@ class TestWalletStorage(WalletTestCase): |
|
|
|
|
|
|
|
storage = WalletStorage(self.wallet_path) |
|
|
|
|
|
|
|
some_dict = {"a":"b", "c":"d"} |
|
|
|
some_dict = { |
|
|
|
u"a": u"b", |
|
|
|
u"c": u"d", |
|
|
|
u"seed_version": 12} |
|
|
|
|
|
|
|
for key, value in some_dict.items(): |
|
|
|
storage.put(key, value) |
|
|
|