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 #ifndef BITCOIN_TEST_UTIL_VALIDATION_H 6 #define BITCOIN_TEST_UTIL_VALIDATION_H 7 8 #include <validation.h> 9 10 struct TestChainState : public CChainState { 11 /** Reset the ibd cache to its initial state */ 12 void ResetIbd(); 13 /** Toggle IsInitialBlockDownload from true to false */ 14 void JumpOutOfIbd(); 15 }; 16 17 #endif // BITCOIN_TEST_UTIL_VALIDATION_H 18