diff options
author | glozow <gloriajzhao@gmail.com> | 2023-10-18 10:31:42 +0100 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2023-10-18 10:32:45 +0100 |
commit | 1803fee1cf15d9030a0eb1309aff63e492026453 (patch) | |
tree | 19ccdd6d46b22ca4af465b2c10d41f4b88507431 /doc | |
parent | c2d4e40e454ba0c7c836a849b6d15db4850079f2 (diff) | |
parent | 1b672eb7665cc032f2c285b1cad331dc92685265 (diff) |
Merge bitcoin/bitcoin#28637: doc: add release note for #27460 (new `importmempool` RPC)
1b672eb7665cc032f2c285b1cad331dc92685265 doc: add release note for #27460 (new `importmempool` RPC) (Sebastian Falbesoner)
Pull request description:
This PR adds a missing release note for #27460.
ACKs for top commit:
glozow:
ACK 1b672eb7665cc032f2c285b1cad331dc92685265
Tree-SHA512: 89deadbfd6779e6eb19801c9fe7459a9876b920d44e09df102774c1eb8b3c0716462613dc99d1711eda4bd959ea61595b33f4528424ac02cf1af6cb4e5f1f0e9
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes-27460.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release-notes-27460.md b/doc/release-notes-27460.md new file mode 100644 index 0000000000..d663ec0baf --- /dev/null +++ b/doc/release-notes-27460.md @@ -0,0 +1,7 @@ +- A new `importmempool` RPC has been added. It loads a valid `mempool.dat` file and attempts to + add its contents to the mempool. This can be useful to import mempool data from another node + without having to modify the datadir contents and without having to restart the node. (#27460) + - Warning: Importing untrusted files is dangerous, especially if metadata from the file is taken over. + - If you want to apply fee deltas, it is recommended to use the `getprioritisedtransactions` and + `prioritisetransaction` RPCs instead of the `apply_fee_delta_priority` option to avoid + double-prioritising any already-prioritised transactions in the mempool. |