use proxy with command line too

This commit is contained in:
thomasv 2012-10-09 16:29:53 +02:00
parent cfce1420c5
commit a27fba8685
1 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ if __name__ == '__main__':
wallet.seed = str(seed)
wallet.init_mpk( wallet.seed )
if not options.offline:
WalletSynchronizer(wallet).start()
WalletSynchronizer(wallet, proxy=proxy).start()
print "Recovering wallet..."
wallet.up_to_date_event.clear()
wallet.up_to_date = False
@ -281,7 +281,7 @@ if __name__ == '__main__':
# open session
if cmd not in offline_commands and not options.offline:
WalletSynchronizer(wallet).start()
WalletSynchronizer(wallet, proxy=proxy).start()
wallet.update()
wallet.save()