diff --git a/doc/release-notes.md b/doc/release-notes.md index 99ecafc62f..d9665ff1c7 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,26 +1,27 @@ Bitcoin ABC version 0.21.3 is now available from: This release includes the following features and fixes: - Fixed a bug where the `listtransactions` RPC was unable to list transactions by a giving label. This functionality has been restored. - MacOS versions earlier than 10.12 are no longer supported. Additionally, Bitcoin ABC does not yet change appearance when macOS "dark mode" is activated. + - Fixed missing help text in `getblockchaininfo` RPC. New RPC methods ------------ - `listwalletdir` returns a list of wallets in the wallet directory which is configured with `-walletdir` parameter. Low-level RPC changes ---------------------- - `-usehd` was removed in version 0.19.7. From that version onwards, all new wallets created are hierarchical deterministic wallets. Version 0.21.3 makes specifying `-usehd` invalid config. Thread names in logs -------------------- - Log lines can be prefixed with the name of the thread that caused the log. To enable this behavior, use `-logthreadnames=1`. diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 3790e85976..56fda4c3a4 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1,2758 +1,2797 @@ // 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