From d8626793bc548a763741571e21131340ed2df48a Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 2 Nov 2013 18:10:18 +0100 Subject: [PATCH] fix: wait_for_network --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index e3f2be42..10a9c593 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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)