aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Dietz <michael.dietz@waya.ai>2021-02-01 09:52:46 -0600
committerMichael Dietz <michael.dietz@waya.ai>2021-03-23 10:51:46 -0400
commit90ae3d8ca68334ec712d67b21a8d4721c6d79788 (patch)
treebb17adf11883adf138e557f3c85415dcd71add5a /doc
parent085b3a729952896ccd0e40c17df569f4421f5493 (diff)
downloadbitcoin-90ae3d8ca68334ec712d67b21a8d4721c6d79788.tar.xz
doc: Add release notes for -deprecatedrpc=addresses and bitcoin-tx
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index 0f248494c7..f049aaa4af 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -69,6 +69,21 @@ Updated RPCs
`whitelisted`, the `permissions` field indicates if the peer has special
privileges. The `banscore` field has simply been removed. (#20755)
+- The following RPCs: `gettxout`, `getrawtransaction`, `decoderawtransaction`,
+ `decodescript`, `gettransaction`, and REST endpoints: `/rest/tx`,
+ `/rest/getutxos`, `/rest/block` deprecated the following fields (which are no
+ longer returned in the responses by default): `addresses`, `reqSigs`.
+ The `-deprecatedrpc=addresses` flag must be passed for these fields to be
+ included in the RPC response. This flag/option will be available until v23, at which
+ point the deprecation will be removed entirely. Note that these fields are attributes of
+ the `scriptPubKey` object returned in the RPC response. However, in the response
+ of `decodescript` these fields are top-level attributes, and included again as attributes
+ of the `scriptPubKey` object. (#20286)
+
+- When creating a hex-encoded bitcoin transaction using the `bitcoin-tx` utility
+ with the `-json` option set, the following fields: `addresses`, `reqSigs` are no longer
+ returned in the tx output of the response. (#20286)
+
Changes to Wallet or GUI related RPCs can be found in the GUI or Wallet section below.
New RPCs