restore display of blockchain height in network dialog

This commit is contained in:
ecdsa 2013-04-29 18:50:23 +02:00
parent b5c0cc6190
commit 5a4576344e
1 changed files with 1 additions and 1 deletions

View 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