Browse Source
kivy: "server lagging" -> show number of blocks
regtest_lnd
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
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: |
|
|
|