Line data Source code
1 : // Copyright (c) 2020 The Bitcoin Core developers 2 : // Distributed under the MIT software license, see the accompanying 3 : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 : 5 : #include <test/util/validation.h> 6 : 7 : #include <util/check.h> 8 : #include <util/time.h> 9 : #include <validation.h> 10 : #include <validationinterface.h> 11 : 12 1 : void TestChainState::ResetIbd() 13 : { 14 1 : m_cached_finished_ibd = false; 15 1 : assert(IsInitialBlockDownload()); 16 1 : } 17 : 18 1 : void TestChainState::JumpOutOfIbd() 19 : { 20 1 : Assert(IsInitialBlockDownload()); 21 1 : m_cached_finished_ibd = true; 22 1 : Assert(!IsInitialBlockDownload()); 23 1 : } 24 : 25 1 : void ValidationInterfaceTest::BlockConnected(CValidationInterface& obj, const std::shared_ptr<const CBlock>& block, const CBlockIndex* pindex) 26 : { 27 1 : obj.BlockConnected(block, pindex); 28 1 : }