Browse Source

adb: do not notify GUI about already known transactions

patch-4
ThomasV 3 years ago
parent
commit
6bef6fab86
  1. 2
      electrum/address_synchronizer.py

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

Loading…
Cancel
Save