commit 25d4a40d6e635bb024c047ffd1ce6810961eab1a
parent b95525896f5e0e8d92294aa6a72ac8899dc27c87
Author: SomberNight <somber.night@protonmail.com>
Date: Sun, 25 Oct 2020 06:55:10 +0100
qt history tab: fix shortcut in HistoryModel.refresh()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
@@ -269,7 +269,7 @@ class HistoryModel(CustomModel, Logger):
self.parent.fx,
onchain_domain=self.get_domain(),
include_lightning=self.should_include_lightning_payments())
- if transactions == list(self.transactions.values()):
+ if transactions == self.transactions:
return
old_length = self._root.childCount()
if old_length != 0: