tfix #1906 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit c367cd64ad6d7f44845ab5e47546a7b054addefe DIR parent 8423f8394f6ded3c443a716144248516c256d711 HTML Author: ThomasV <thomasv@electrum.org> Date: Sat, 20 Aug 2016 17:33:12 +0200 fix #1906 Diffstat: M gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -2118,7 +2118,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): history = wallet.get_history() lines = [] for item in history: - tx_hash, height, conf, timestamp, value, balance = item + tx_hash, height, confirmations, timestamp, value, balance = item if height>0: if timestamp is not None: time_string = format_time(timestamp)