Browse Source

kivy: "server lagging" -> show number of blocks

regtest_lnd
SomberNight 6 years ago
parent
commit
0c1ea909df
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/kivy/main_window.py

2
electrum/gui/kivy/main_window.py

@ -746,7 +746,7 @@ class ElectrumWindow(App):
if not self.wallet.up_to_date or server_height == 0:
status = _("Synchronizing...")
elif server_lag > 1:
status = _("Server lagging")
status = _("Server is lagging ({} blocks)").format(server_lag)
else:
status = ''
else:

Loading…
Cancel
Save