mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
restore display of blockchain height in network dialog
This commit is contained in:
parent
b5c0cc6190
commit
5a4576344e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue