From ae74568620e1eee8fe27504ee98a996943ac2a1b Mon Sep 17 00:00:00 2001 From: thgh Date: Thu, 14 Nov 2013 15:55:21 +0100 Subject: [PATCH] Undo reverse list --- 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 371031627..7bda9f675 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1236,7 +1236,7 @@ class ElectrumWindow(QMainWindow): is_red = False gap = 0 - for address in reversed(account.get_addresses(is_change)): + for address in account.get_addresses(is_change): h = self.wallet.history.get(address,[]) if h == []: