diff --git a/doc/release-notes/release-notes.md b/doc/release-notes/release-notes.md index cb04e1796..988adc750 100644 --- a/doc/release-notes/release-notes.md +++ b/doc/release-notes/release-notes.md @@ -1,17 +1,19 @@ # Bitcoin ABC 0.24.4 Release Notes Bitcoin ABC version 0.24.4 is now available from: This release includes the following features and fixes: - Bitcoin ABC will no longer create an unnamed `""` wallet by default when no wallet is specified on the command line or in the configuration files. For backwards compatibility, if an unnamed `""` wallet already exists and would have been loaded previously, then it will still be loaded. Users without an unnamed `""` wallet and without any other wallets to be loaded on startup will be prompted to either choose a wallet to load, or to create a new wallet. - A new `send` RPC with similar syntax to `walletcreatefundedpsbt`, including support for coin selection and a custom fee rate. Using the new `send` method is encouraged: `sendmany` and `sendtoaddress` may be deprecated in a future release. +- The `testmempoolaccept` RPC returns `size` and a `fee` object with the `base` fee + if the transaction passes validation. diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index d0f940160..0abd9a6b2 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1,2167 +1,2185 @@ // Copyright (c) 2010 Satoshi Nakamoto // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include