commit 0c1ea909dfc0c7645d135b06cb101f7a12f51c3e
parent f432320576505531e22fa6262e3fa544e0001017
Author: SomberNight <somber.night@protonmail.com>
Date: Fri, 12 Apr 2019 17:13:10 +0200
kivy: "server lagging" -> show number of blocks
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/gui/kivy/main_window.py b/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: