diff --git a/doc/release-notes.md b/doc/release-notes.md index 771ed8444..b116e3c9f 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,7 +1,9 @@ # Bitcoin ABC 0.26.7 Release Notes Bitcoin ABC version 0.26.7 is now available from: -This is a maintenance release with no user-visible change. +This release includes the following features and fixes: + - `getblockchaininfo` now returns a new `time` field, that provides the chain + tip time. diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index eb4dbabd0..0ad58b073 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1,3366 +1,3369 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2019 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 #include #include #include #include #include #include #include #include