Bitcoin Core 28.99.0
P2P Digital Currency
validation.h
Go to the documentation of this file.
1// Copyright (c) 2020-2022 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
11
14 void ResetIbd();
16 void JumpOutOfIbd();
17};
18
20{
21public:
22 static void BlockConnected(
23 ChainstateRole role,
25 const std::shared_ptr<const CBlock>& block,
26 const CBlockIndex* pindex);
27};
28
29#endif // BITCOIN_TEST_UTIL_VALIDATION_H
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:141
Implement this to subscribe to events generated in validation and mempool.
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
Definition: validation.h:866
static void BlockConnected(ChainstateRole role, CValidationInterface &obj, const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex)
Definition: validation.cpp:25
ChainstateRole
This enum describes the various roles a specific Chainstate instance can take.
Definition: chain.h:25
void JumpOutOfIbd()
Toggle IsInitialBlockDownload from true to false.
Definition: validation.cpp:18
void ResetIbd()
Reset the ibd cache to its initial state.
Definition: validation.cpp:12