aboutsummaryrefslogtreecommitdiff
path: root/doc/release-notes.md
diff options
context:
space:
mode:
authorfyquah <fyquah@protonmail.com>2021-07-16 16:57:24 +0100
committerKiminuo <kiminuo@protonmail.com>2021-10-05 10:42:34 +0200
commit8edf6204a87057a451160d1e61e79d8be112e81f (patch)
treee3cc950d95238d4e5aed9c3e5c22c09d214aa0fb /doc/release-notes.md
parent459104b2aae6eeaadfa5a7e47944f1a34780dacd (diff)
downloadbitcoin-8edf6204a87057a451160d1e61e79d8be112e81f.tar.xz
release-notes: Add release note about getblock verbosity level 3.
Diffstat (limited to 'doc/release-notes.md')
-rw-r--r--doc/release-notes.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index 81e79dd3a9..3bf3e47169 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -76,6 +76,14 @@ Updated RPCs
`gettransaction verbose=true` and REST endpoints `/rest/tx`, `/rest/getutxos`,
`/rest/block` no longer return the `addresses` and `reqSigs` fields, which
were previously deprecated in 22.0. (#22650)
+- The `getblock` RPC command now supports verbose level 3 containing transaction inputs
+ `prevout` information. The existing `/rest/block/` REST endpoint is modified to contain
+ this information too. Every `vin` field will contain an additional `prevout` subfield
+ describing the spent output. `prevout` contains the following keys:
+ - `generated` - true if the spent coins was a coinbase.
+ - `height`
+ - `value`
+ - `scriptPubKey`
- `listunspent` now includes `ancestorcount`, `ancestorsize`, and
`ancestorfees` for each transaction output that is still in the mempool.