You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
733 B
20 lines
733 B
3 years ago
|
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.
|