trestore display of blockchain height in network dialog - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 5a4576344ed35bf062652477f18ff79b9c27e969
DIR parent b5c0cc61902bd912e979f73fa0fe46c32b3c23bc
HTML Author: ecdsa <ecdsa@github>
Date: Mon, 29 Apr 2013 18:50:23 +0200
restore display of blockchain height in network dialog
Diffstat:
M gui/network_dialog.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/network_dialog.py b/gui/network_dialog.py
t@@ -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