minor fix: missing parameter in get_history
This commit is contained in:
@@ -2448,7 +2448,7 @@ class ElectrumWindow(QMainWindow):
|
|||||||
history = wallet.get_history()
|
history = wallet.get_history()
|
||||||
lines = []
|
lines = []
|
||||||
for item in history:
|
for item in history:
|
||||||
tx_hash, confirmations, value, timestamp = item
|
tx_hash, confirmations, value, timestamp, balance = item
|
||||||
if confirmations:
|
if confirmations:
|
||||||
if timestamp is not None:
|
if timestamp is not None:
|
||||||
time_string = format_time(timestamp)
|
time_string = format_time(timestamp)
|
||||||
|
|||||||
Reference in New Issue
Block a user