Browse Source

restore display of blockchain height in network dialog

283
ecdsa 12 years ago
parent
commit
5a4576344e
  1. 2
      gui/network_dialog.py

2
gui/network_dialog.py

@ -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

Loading…
Cancel
Save