Browse Source

minor fix: missing parameter in get_history

283
ThomasV 10 years ago
parent
commit
f14c863a0a
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -2448,7 +2448,7 @@ class ElectrumWindow(QMainWindow):
history = wallet.get_history()
lines = []
for item in history:
tx_hash, confirmations, value, timestamp = item
tx_hash, confirmations, value, timestamp, balance = item
if confirmations:
if timestamp is not None:
time_string = format_time(timestamp)

Loading…
Cancel
Save