restore display of blockchain height in network dialog
authorecdsa <ecdsa@github>
Mon, 29 Apr 2013 16:50:23 +0000 (18:50 +0200)
committerecdsa <ecdsa@github>
Mon, 29 Apr 2013 16:50:23 +0000 (18:50 +0200)
gui/network_dialog.py

index 0dae5ab..6048a16 100644 (file)
@@ -44,7 +44,7 @@ class NetworkDialog(QDialog):
 
         if parent:
             if interface.is_connected:
-                status = _("Connected to")+" %s"%(interface.host) #, wallet.verifier.height)+_("blocks")
+                status = _("Connected to")+" %s"%(interface.host) + "\n%d "%(parent.wallet.verifier.height)+_("blocks")
             else:
                 status = _("Not connected")
             server = interface.server