diff --git a/doc/release-notes.md b/doc/release-notes.md index 8f5ce6210..29a56d2b7 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,13 +1,17 @@ Bitcoin ABC version 0.20.7 is now available from: This release includes the following features and fixes: - The new RPC `scantxoutset` can be used to scan the UTXO set for entries that match certain output descriptors. Refer to the [output descriptors reference documentation](/doc/descriptors.md) for more details. This call is similar to `listunspent` but does not use a wallet, meaning that the wallet can be disabled at compile or run time. This call is experimental, as such, is subject to changes or removal in future releases. - The new RPC `getzmqnotifications` returns information about active ZMQ notifications. + - When running bitcoind without `-daemon`, logging to stdout is now the + default behavior. Setting `-printtoconsole=1` no longer implicitly disables + logging to debug.log. Instead, logging to file can be explicitly disabled by + setting `-debuglogfile=0`. diff --git a/src/init.cpp b/src/init.cpp index 2a9111121..d2e31d9ee 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,2494 +1,2508 @@ // 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