From f14c863a0acc089b68ef0cbe19d2104672e38956 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 3 Apr 2015 15:41:56 +0200 Subject: [PATCH] minor fix: missing parameter in get_history --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 0e495724a..95403a268 100644 --- a/gui/qt/main_window.py +++ b/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)