diff --git a/doc/release-notes.md b/doc/release-notes.md index 24683594d6..1e9da6832f 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,8 +1,13 @@ 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). diff --git a/src/init.cpp b/src/init.cpp index ce98c12e31..fb966b163b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,2523 +1,2513 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include