diff --git a/doc/release-notes.md b/doc/release-notes.md index 99fdb893c3..9ef69854e1 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,21 +1,24 @@ Bitcoin ABC version 0.21.8 is now available from: This release includes the following features and fixes: Updated RPCs ------------ - The `getrawtransaction` RPC no longer checks the unspent UTXO set for a transaction. The remaining behaviors are as follows: 1. If a blockhash is provided, check the corresponding block. 2. If no blockhash is provided, check the mempool. 3. If no blockhash is provided but txindex is enabled, also check txindex. - `getaddressinfo` now reports `solvable`, a boolean indicating whether all information necessary for signing is present in the wallet (ignoring private keys). - `getaddressinfo`, `listunspent`, and `scantxoutset` have a new output field `desc`, an output descriptor that encapsulates all signing information and key paths for the address (only available when `solvable` is true for `getaddressinfo` and `listunspent`). +- The `importmulti` RPC will now contain a new per-request `warnings` + field with strings that explain when fields are being ignored or + inconsistent, if any. diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 7ac490b7b9..6cc483d37a 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -1,1626 +1,1715 @@ // Copyright (c) 2009-2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include