From 5b39e305f6b7da6d82fc3484b16d7c9ad43a2904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Mon, 16 Jun 2025 20:17:22 +0200 Subject: [PATCH] history_list: if transactions == self.transactions can never hold We add ['balance'] to all root entries, this never holds even if the transaction sets themselves are the same --- electrum/gui/qt/history_list.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 67061348d..0f7e60bb3 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -302,8 +302,6 @@ class HistoryModel(CustomModel, Logger): include_lightning=self.should_include_lightning_payments(), include_fiat=self.should_show_fiat(), ) - if transactions == self.transactions: - return old_length = self._root.childCount() if old_length != 0: self.beginRemoveRows(QModelIndex(), 0, old_length)