From 5469e3668ef2d7405849c8e6e88f67a4acfc399b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 23 Dec 2018 10:02:19 +0100 Subject: [PATCH] fix #4958 --- electrum/gui/qt/history_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 9e1104f38..e785ddd09 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -89,6 +89,7 @@ class HistoryModel(QAbstractItemModel, PrintError): self.view = None # type: HistoryList self.transactions = OrderedDictWithIndex() self.tx_status_cache = {} # type: Dict[str, Tuple[int, str]] + self.summary = None def set_view(self, history_list: 'HistoryList'): # FIXME HistoryModel and HistoryList mutually depend on each other.