1
0

restore: try old wallet first

This commit is contained in:
thomasv
2013-09-03 10:58:07 +02:00
parent 3ecd81c94a
commit 9b986f8cb6
2 changed files with 47 additions and 32 deletions

View File

@@ -238,6 +238,9 @@ class Wallet:
self.storage.put('seed', self.seed, True)
self.storage.put('seed_version', self.seed_version, True)
def create_accounts(self):
master_k, master_c, master_K, master_cK = bip32_init(self.seed)
# normal accounts
@@ -1331,6 +1334,7 @@ class Wallet:
class WalletSynchronizer(threading.Thread):