electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 01246b0d97ee196ccdb98af35a4f48a637825def
parent 533bd97a05591d040caf7d1ca0132c7c28783e99
Author: SomberNight <somber.night@protonmail.com>
Date:   Tue, 18 Sep 2018 03:48:14 +0200

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.

Diffstat:
Melectrum/address_synchronizer.py | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git 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: