1
0

Merge branch 'master' of git://github.com/spesmilo/electrum

This commit is contained in:
ThomasV
2015-03-31 18:57:50 +02:00
3 changed files with 8 additions and 4 deletions

View File

@@ -689,6 +689,9 @@ class ElectrumWindow(QMainWindow):
for item in self.wallet.get_history(self.current_account):
tx_hash, conf, value, timestamp, balance = item
time_str = _("unknown")
if conf is None and timestamp is None:
continue # skip history in offline mode
if conf > 0:
time_str = self.format_time(timestamp)
if conf == -1: