correct other reference to network object

This commit is contained in:
twopir 2016-05-08 20:57:02 -07:00 committed by Pi
parent 9036d9e8f7
commit 87b95c51d8
1 changed files with 2 additions and 2 deletions

View File

@ -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"), \