fix restore threads

This commit is contained in:
ThomasV 2013-09-16 06:14:23 +02:00
parent 428fbf1f63
commit 01349f6528
1 changed files with 3 additions and 6 deletions

View File

@ -175,10 +175,6 @@ if __name__ == '__main__':
if fee: wallet.fee = float(fee)
if gap: wallet.gap_limit = int(gap)
network = Network(config)
network.start()
wallet.start_threads(network)
if cmd == 'restore':
seed = raw_input("seed:")
try:
@ -192,9 +188,10 @@ if __name__ == '__main__':
wallet.init_seed( str(seed) )
wallet.save_seed()
wallet.create_accounts()
wallet.synchronize()
print_msg("Recovering wallet...")
network = Network(config)
network.start()
wallet.start_threads(network)
wallet.update()
if wallet.is_found():
print_msg("Recovery successful")