diff --git a/doc/release-notes.md b/doc/release-notes.md index 5bcba010c..04499fcd2 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,15 +1,24 @@ Bitcoin ABC version 0.20.13 is now available from: This release includes the following features and fixes: - The RPC `getrpcinfo` returns runtime details of the RPC server. At the moment it returns the active commands and the corresponding execution time. - `ischange` field of boolean type that shows if an address was used for change output was added to `getaddressinfo` method response. New RPC methods ------------ - `getnodeaddresses` returns peer addresses known to this node. It may be used to connect to nodes over TCP without using the DNS seeds. + + +Network upgrade +--------------- + +At the MTP time of 1589544000 (May 15, 2020 12:00:00 UTC) the following behaviors will change: + +- The default for max number of in-pool ancestors (`-limitancestorcount`) is changed from 25 to 50. +- The default for max number of in-pool descendants (`-limitdescendantcount`) is changed from 25 to 50. diff --git a/src/init.cpp b/src/init.cpp index 58c1e356c..27b288a7f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,2500 +1,2503 @@ // 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 #include #include #include