diff --git a/doc/release-notes.md b/doc/release-notes.md index f8da161371..398b5f01e8 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,15 +1,18 @@ 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. + - Remove deprecated "startingpriority" and "currentpriority" from + `getrawmempool`, `getmempoolancestors`, `getmempooldescendants` and + `getmempoolentry` RPC. diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 9f038e8430..c205cd9d0c 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1,2539 +1,2533 @@ // 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