diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-03-20 12:59:18 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-03-20 12:46:53 -0400 |
commit | fabfb79673d6bf9bff5258cd709d8294e77c1764 (patch) | |
tree | 5e13b5ef1aa6f96a7c2a3f2a3882f53b8969cb2a /doc | |
parent | fac1a0fe54287d819cd0967ad6c75bbcb49b332b (diff) |
doc: Add release notes for 15596
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index ebcdcda306..a876b70ba7 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -66,9 +66,21 @@ platform. Notable changes =============== -Example item +Updated RPCs ------------ +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. + Low-level changes ================= |