veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
alt_block_tree_util.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_ALT_BLOCK_TREE_UTIL_HPP
7#define VERIBLOCK_POP_CPP_ALT_BLOCK_TREE_UTIL_HPP
8
9#include <veriblock/pop/entities/altblock.hpp>
10#include <veriblock/pop/entities/publication_data.hpp>
11#include <veriblock/pop/validation_state.hpp>
12
13#include "alt_block_tree.hpp"
14#include "block_index.hpp"
15#include "blockchain_util.hpp"
16#include "command_group.hpp"
17
18namespace altintegration {
19
21template <>
22bool checkBlockTime(const BlockIndex<AltBlock>& prev,
23 const AltBlock& block,
24 ValidationState& state,
25 const AltChainParams& params);
26
27} // namespace altintegration
28
29#endif // VERIBLOCK_POP_CPP_ALT_BLOCK_TREE_UTIL_HPP
Defines logging helpers.
Definition: block.hpp:14