Browse Source
wallet: fix RBF batching
post-storage_db-merge fixup
sqlite_db
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|