From 01246b0d97ee196ccdb98af35a4f48a637825def Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 18 Sep 2018 03:48:14 +0200 Subject: [PATCH] wallet/verifier: when adding into unverified_tx, don't remove from verifier Not needed since aee2d8e12060e0568559627130ca8a9dc9b12bc9 And was never really working I guess (race..) Also, during normal initial history sync, it caused the verifier to request proofs multiple times. --- electrum/address_synchronizer.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py index 977260e81..3569b3115 100644 --- a/electrum/address_synchronizer.py +++ b/electrum/address_synchronizer.py @@ -577,9 +577,6 @@ class AddressSynchronizer(PrintError): with self.lock: # tx will be verified only if height > 0 self.unverified_tx[tx_hash] = tx_height - # to remove pending proof requests: - if self.verifier: - self.verifier.remove_spv_proof_for_tx(tx_hash) def remove_unverified_tx(self, tx_hash, tx_height): with self.lock: