commit 4fd05b8f706d585f4e2b1e4df476738dd6078316
parent 0099b2a56051e208564ada02c1e73bf344e7fde7
Author: ThomasV <thomasv@gitorious>
Date: Wed, 11 Sep 2013 12:06:39 +0200
fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/gui_gtk.py b/gui/gui_gtk.py
@@ -271,7 +271,7 @@ def run_network_dialog( wallet, parent ):
interface = wallet.interface
if parent:
if interface.is_connected:
- status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.verifier.height)
+ status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.network.blockchain.height)
else:
status = "Not connected"
else: