tfix: wait_for_network - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit d8626793bc548a763741571e21131340ed2df48a
DIR parent 6a7e13b63b769005e9474af34abca1960f695894
HTML Author: ThomasV <thomasv@gitorious>
Date: Sat, 2 Nov 2013 18:10:18 +0100
fix: wait_for_network
Diffstat:
M lib/wallet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/wallet.py b/lib/wallet.py
t@@ -1578,7 +1578,7 @@ class Wallet:
time.sleep(0.1)
def wait_for_network():
- while not self.network.interface.is_connected:
+ while not self.network.is_connected():
msg = "%s \n" % (_("Connecting..."))
apply(callback, (msg,))
time.sleep(0.1)