diff --git a/doc/release-notes.md b/doc/release-notes.md index 1e9da6832f..f8da161371 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,13 +1,15 @@ Bitcoin ABC version 0.20.9 is now available from: This release includes the following features and fixes: - Fixed a bug with Multiwallets that have their own directories (i.e. cases such as `DATADIR/wallets/mywallet/wallet.dat`). Backups of these wallets will now take each wallet's specific directory into account. - When transactions are rejected for being low fee, the error message will read "min relay fee not met" instead of "insufficient priority". Also, a bug was fixed where sometimes low fee transactions would be accepted via `sendrawtransaction` (and be stuck semipermanently, as they would be unable to relay to miners). + - Added `nTx` return value to `getblock` and `getblockheader` detailing the + number of transactions in the returned block. diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 9d38f774f8..9f038e8430 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1,2533 +1,2539 @@ // 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