You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem with the current light client implementation (see this comment) that we may attempt to fund a transaction with a stale UTXO (reported by Electrs) if there is a parallel payment in the mempool. Firstly, we should investigate and note when exactly UTXOs are marked as spent by Electrs and then implement one of the following:
Hold the transaction creation mutex until the block has been included and Electrs marks this as spent
Cache UTXOs we are spending from and skip these when funding a new transaction
The text was updated successfully, but these errors were encountered:
There is a problem with the current light client implementation (see this comment) that we may attempt to fund a transaction with a stale UTXO (reported by Electrs) if there is a parallel payment in the mempool. Firstly, we should investigate and note when exactly UTXOs are marked as spent by Electrs and then implement one of the following:
The text was updated successfully, but these errors were encountered: