diff --git a/doc/release-notes.md b/doc/release-notes.md --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -24,16 +24,6 @@ inconsistent, if any. - Fixed a bug where `listreceivedaddress` would fail to take an address as a string. - -Note: some low-level RPC changes mainly useful for testing are described in the -Low-level Changes section below. - -- The `sendtoaddress` RPC never had this check, so to normalize the behavior, - `minconf` is now ignored in `sendmany`. If the coin selection does not - succeed due to missing coins, it will still throw an RPC error. Be reminded - that coin selection is influenced by the `-spendzeroconfchange`, - `-limitancestorcount`, `-limitdescendantcount` and `-walletrejectlongchains` - command line arguments. - The `hdmasterkeyid` return field has been removed from `getaddressinfo` and `getwalletinfo`. Use `hdseedid` instead. - Descriptors with key origin information imported through `importmulti` will @@ -44,6 +34,18 @@ then that key will have a derivation path as if it were just an independent key (i.e. no derivation path and its master fingerprint is itself) +Note: some low-level RPC changes mainly useful for testing are described in the +Low-level Changes section below. + +- The `sendmany` RPC had an argument `minconf` that was not well specified and + would lead to RPC errors even when the wallet's coin selection would succeed. + The `sendtoaddress` RPC never had this check, so to normalize the behavior, + `minconf` is now ignored in `sendmany`. If the coin selection does not + succeed due to missing coins, it will still throw an RPC error. Be reminded + that coin selection is influenced by the `-spendzeroconfchange`, + `-limitancestorcount`, `-limitdescendantcount` and `-walletrejectlongchains` + command line arguments. + RPC importprivkey: new label behavior -------------------------------------