mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
wallet: fix RBF batching
post-storage_db-merge fixup
This commit is contained in:
parent
94c4cb44d7
commit
b79f43c360
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue