minor fix: missing parameter in get_history

This commit is contained in:
ThomasV 2015-04-03 15:41:56 +02:00
parent c89c449dd7
commit f14c863a0a
1 changed files with 1 additions and 1 deletions

View File

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