aboutsummaryrefslogtreecommitdiff
path: root/doc/release-notes.md
diff options
context:
space:
mode:
authorjosibake <josibake@protonmail.com>2021-08-16 17:41:47 +0200
committerjosibake <josibake@protonmail.com>2021-11-02 10:05:46 +0100
commit07ade7db8f919826c5e69bdaf7d54a6ae653175e (patch)
tree86e95b7cdcef89761d8b5d51c1ced3f8f2fa038d /doc/release-notes.md
parent2ee406ce3e9c252734cb391d85044ac389c34279 (diff)
downloadbitcoin-07ade7db8f919826c5e69bdaf7d54a6ae653175e.tar.xz
doc: add release note for fee field deprecation
Diffstat (limited to 'doc/release-notes.md')
-rw-r--r--doc/release-notes.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index b460cd3eb2..231195108b 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -99,6 +99,15 @@ Updated RPCs
causes the lock to be written persistently to the wallet database. This
allows UTXOs to remain locked even after node restarts or crashes. (#23065)
+- The top-level fee fields `fee`, `modifiedfee`, `ancestorfees` and `descendantfees`
+ returned by RPCs `getmempoolentry`,`getrawmempool(verbose=true)`,
+ `getmempoolancestors(verbose=true)` and `getmempooldescendants(verbose=true)`
+ are deprecated and will be removed in the next major version (use
+ `-deprecated=fees` if needed in this version). The same fee fields can be accessed
+ through the `fees` object in the result. WARNING: deprecated
+ fields `ancestorfees` and `descendantfees` are denominated in sats, whereas all
+ fields in the `fees` object are denominated in BTC. (#22689)
+
New RPCs
--------