diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-01-14 12:42:40 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-01-14 12:37:44 +0100 |
commit | fa4c72e706e7a7bb3b271bd95f0398952daa9051 (patch) | |
tree | 8e3217c4ace3896950a86ac5ac4653e0de06922f | |
parent | fa9377c7464ed37ae1dc007250cffb9dc9d19a78 (diff) |
doc: Rework 14707 release notes
-rw-r--r-- | doc/release-notes-14707.md | 19 | ||||
-rw-r--r-- | doc/release-notes.md | 13 |
2 files changed, 13 insertions, 19 deletions
diff --git a/doc/release-notes-14707.md b/doc/release-notes-14707.md deleted file mode 100644 index b53204f788..0000000000 --- a/doc/release-notes-14707.md +++ /dev/null @@ -1,19 +0,0 @@ -Wallet `receivedby` RPCs now include coinbase transactions -------------- - -Previously, the following wallet RPCs excluded coinbase transactions: - -`getreceivedbyaddress` - -`getreceivedbylabel` - -`listreceivedbyaddress` - -`listreceivedbylabel` - -This release changes this behaviour and returns results accounting for received coins from coinbase outputs. - -A new option, `include_immature_coinbase` (default=`false`), determines whether to account for immature coinbase transactions. -Immature coinbase transactions are coinbase transactions that have 100 or fewer confirmations, and are not spendable. - -The previous behaviour can be restored using the configuration `-deprecatedrpc=exclude_coinbase`, but may be removed in a future release. diff --git a/doc/release-notes.md b/doc/release-notes.md index 5c44edfffb..7a47d76bba 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -171,6 +171,19 @@ Wallet causes the lock to be written persistently to the wallet database. This allows UTXOs to remain locked even after node restarts or crashes. (#23065) +- `receivedby` RPCs now include coinbase transactions. Previously, the + following wallet RPCs excluded coinbase transactions: `getreceivedbyaddress`, + `getreceivedbylabel`, `listreceivedbyaddress`, `listreceivedbylabel`. This + release changes this behaviour and returns results accounting for received + coins from coinbase outputs. The previous behaviour can be restored using the + configuration `-deprecatedrpc=exclude_coinbase`, but may be removed in a + future release. (#14707) + +- A new option in the same `receivedby` RPCs, `include_immature_coinbase` + (default=`false`), determines whether to account for immature coinbase + transactions. Immature coinbase transactions are coinbase transactions that + have 100 or fewer confirmations, and are not spendable. (#14707) + GUI changes ----------- |