diff --git a/doc/release-notes.md b/doc/release-notes.md index c9fa25c30..829b884c7 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,12 +1,16 @@ # Bitcoin ABC 0.24.2 Release Notes Bitcoin ABC version 0.24.2 is now available from: This release includes the following features and fixes: - The message signature prefix has been rebranded to `eCash Signed Message:` (previously was `Bitcoin Signed Message:`). - A new `getindexinfo` RPC returns the actively running indices of the node, including their current sync status and height. It also accepts an `index_name` - to specify returning only the status of that index. \ No newline at end of file + to specify returning only the status of that index. + - `fundrawtransaction` and `walletcreatefundedpsbt` when used with the `lockUnspents` + argument now lock manually selected coins, in addition to automatically selected + coins. Note that locked coins are never used in automatic coin selection, but + can still be manually selected. diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 68774ff21..92db3d232 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -1,4984 +1,4985 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2019 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 // for GetConsensus. #include #include #include #include #include #include #include #include #include #include #include #include #include #include