diff --git a/scripts/merchant/merchant.py b/scripts/merchant/merchant.py index 626396e9..7d0d2e3f 100644 --- a/scripts/merchant/merchant.py +++ b/scripts/merchant/merchant.py @@ -166,10 +166,11 @@ if __name__ == '__main__': # create watching_only wallet config = electrum.SimpleConfig({'wallet_path':wallet_path}) storage = electrum.WalletStorage(config) - wallet = electrum.wallet.NewWallet(storage) if not storage.file_exists: - wallet.seed = '' - wallet.create_watching_only_wallet(xpub) + print "creating wallet file" + wallet = electrum.wallet.Wallet.from_xpub(xpub, storage) + else: + wallet = electrum.wallet.Wallet(storage) wallet.synchronize = lambda: None # prevent address creation by the wallet wallet.start_threads(network)