Using Bitcoind and Json-RPC, how can I remove an unconfirmed transaction from the memory pool?
The scenario being that I want to remove the unconfirmed transaction because it's not getting confirmed, and it's preventing me from sending new transactions spending the same inputs because Bitcoind considers it a double spend.
removeprunedfunds
will remove the tx from just the local node's mempool and not necessarily from the mempool of other nodes that the tx may have propagated to. – A-Diddy Oct 04 '21 at 17:22