tkivy: "server lagging" -> show number of blocks - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0c1ea909dfc0c7645d135b06cb101f7a12f51c3e DIR parent f432320576505531e22fa6262e3fa544e0001017 HTML Author: SomberNight <somber.night@protonmail.com> Date: Fri, 12 Apr 2019 17:13:10 +0200 kivy: "server lagging" -> show number of blocks Diffstat: M electrum/gui/kivy/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/kivy/main_window.py b/electrum/gui/kivy/main_window.py t@@ -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: