mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
4185570340
We add an RPC to fetch the mempool transactions spending given outpoints. Without this RPC, application developers would need to first call `getrawmempool` which returns a long list of `txid`, then fetch each of these txs individually to check whether they spend the given outpoint(s). This RPC can later be enriched to also find confirmed transactions instead of being restricted to mempool transactions.
5 lines
No EOL
162 B
Markdown
5 lines
No EOL
162 B
Markdown
New RPCs
|
|
--------
|
|
|
|
- A new `gettxspendingprevout` RPC has been added, which scans the mempool to find
|
|
transactions spending any of the given outpoints. (#24408) |