Fix wrong number of arguments error

When calling Wallet#create_watching_only_wallet
This commit is contained in:
Ramon Tayag 2014-07-27 17:32:07 +08:00
parent bd3bfb5e53
commit 4f2a4c84a3
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ if __name__ == '__main__':
wallet = Wallet(storage)
if not storage.file_exists:
wallet.seed = ''
wallet.create_watching_only_wallet(master_public_key,master_chain)
wallet.create_watching_only_wallet(master_public_key)
wallet.synchronize = lambda: None # prevent address creation by the wallet
wallet.start_threads(network)