diff --git a/gui/stdio.py b/gui/stdio.py index e47d87f1..b98e24c4 100644 --- a/gui/stdio.py +++ b/gui/stdio.py @@ -14,7 +14,7 @@ class ElectrumGui: def __init__(self, config, daemon, plugins): self.config = config - network = daemon.network + self.network = daemon.network storage = WalletStorage(config.get_wallet_path()) if not storage.file_exists: print "Wallet not found. try 'electrum create'" @@ -31,10 +31,10 @@ class ElectrumGui: self.str_fee = "" self.wallet = Wallet(storage) - self.wallet.start_threads(network) + self.wallet.start_threads(self.network) self.contacts = StoreDict(self.config, 'contacts') - network.register_callback(self.on_network, ['updated', 'banner']) + self.network.register_callback(self.on_network, ['updated', 'banner']) self.commands = [_("[h] - displays this help text"), \ _("[i] - display transaction history"), \ _("[o] - enter payment order"), \