diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2023-10-11 19:45:21 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2023-10-15 18:14:43 +0200 |
commit | 1b672eb7665cc032f2c285b1cad331dc92685265 (patch) | |
tree | 9bea65b75d841d79ea367c594d46614373a100ec | |
parent | ab2f531b785c3c17746ac9766a6db5b6d26677e8 (diff) |
doc: add release note for #27460 (new `importmempool` RPC)
Co-authored-by: glozow <gloriajzhao@gmail.com>
-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. |