1
0

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

This commit is contained in:
SomberNight
2019-04-12 17:13:10 +02:00
parent f432320576
commit 0c1ea909df

View File

@@ -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: