electrum

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

commit b79f43c360944a4af493ed87161c21143cb39b31
parent 94c4cb44d723133bb18dfea578d266f2e36c9cb6
Author: SomberNight <somber.night@protonmail.com>
Date:   Sat,  2 Mar 2019 19:16:39 +0100

wallet: fix RBF batching

post-storage_db-merge fixup

Diffstat:
Melectrum/wallet.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/wallet.py b/electrum/wallet.py @@ -626,7 +626,7 @@ class Abstract_Wallet(AddressSynchronizer): # is_mine outputs should not be spent yet # to avoid cancelling our own dependent transactions txid = tx.txid() - if any([self.is_mine(o.address) and self.spent_outpoints[txid].get(output_idx) + if any([self.is_mine(o.address) and self.db.get_spent_outpoint(txid, output_idx) for output_idx, o in enumerate(tx.outputs())]): continue # all inputs should be is_mine