Browse Source

qt history tab: fix shortcut in HistoryModel.refresh()

patch-4
SomberNight 4 years ago
parent
commit
25d4a40d6e
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/history_list.py

2
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:

Loading…
Cancel
Save