Merge pull request #366 from mkramlich/master

curses text UI now says Offline in --offline mode (matching the main Qt UI)
This commit is contained in:
ThomasV 2013-11-05 11:27:45 -08:00
commit faa93e3010
1 changed files with 5 additions and 3 deletions

View File

@ -122,15 +122,17 @@ 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..." )
msg = _("Synchronizing...")
else:
c, u = self.wallet.get_balance()
msg = _("Balance")+": %f "%(Decimal( c ) / 100000000)
if u: msg += " [%f unconfirmed]"%(Decimal( u ) / 100000000)
else:
msg = _( "Not connected" )
msg = _("Not connected")
self.stdscr.addstr( self.maxy -1, 3, msg)