Browse Source

curses text UI now says Offline (rather than 'Not connected') when started in --offline mode; this matches the main Qt UI

master
Michael Kramlich 12 years ago
parent
commit
09b0eeedfb
  1. 4
      gui/text.py

4
gui/text.py

@ -122,7 +122,9 @@ class ElectrumGui:
def print_balance(self):
if self.network and self.network.interface and self.network.interface.is_connected:
if not self.network:
msg = _("Offline")
elif self.network.interface and self.network.interface.is_connected:
if not self.wallet.up_to_date:
msg = _("Synchronizing...")
else:

Loading…
Cancel
Save