From 6bef6fab86ce0b85cb446b8d94a860f29f64d150 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 13 Jun 2022 10:53:43 +0200 Subject: [PATCH] adb: do not notify GUI about already known transactions --- electrum/address_synchronizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py index bdaa0a385..b23dcef21 100644 --- a/electrum/address_synchronizer.py +++ b/electrum/address_synchronizer.py @@ -422,7 +422,7 @@ class AddressSynchronizer(Logger): tx = self.db.get_transaction(tx_hash) if tx is None: continue - self.add_transaction(tx, allow_unrelated=True) + self.add_transaction(tx, allow_unrelated=True, notify_GUI=False) # Store fees for tx_hash, fee_sat in tx_fees.items():