veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
btc_blockchain_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 ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_BTC_BLOCKCHAIN_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_BTC_BLOCKCHAIN_UTIL_HPP_
8
9#include <veriblock/pop/entities/btcblock.hpp>
10
11#include "blockchain_util.hpp"
12#include "btc_chain_params.hpp"
13#include "chain.hpp"
14#include "miner.hpp"
15
16namespace altintegration {
17
19template <>
20uint32_t getNextWorkRequired(const BlockIndex<BtcBlock>& prevBlock,
21 const BtcBlock& block,
22 const BtcChainParams& params);
23
25template <>
26BtcBlock Miner<BtcBlock, BtcChainParams>::getBlockTemplate(
27 const BlockIndex<BtcBlock>& tip, const merkle_t& merkle);
28
30template <>
31ArithUint256 getBlockProof(const BtcBlock& block);
32
34template <>
35int64_t getMedianTimePast(const BlockIndex<BtcBlock>& prev);
36
38template <>
39bool checkBlockTime(const BlockIndex<BtcBlock>& prev,
40 const BtcBlock& block,
41 ValidationState& state,
42 const BtcChainParams& param);
43
45template <>
46bool contextuallyCheckBlock(const BlockIndex<BtcBlock>& prev,
47 const BtcBlock& block,
48 ValidationState& state,
49 const BtcChainParams& params,
50 bool shouldVerifyNextWork);
51
52} // namespace altintegration
53
54#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_BTC_BLOCKCHAIN_UTIL_HPP_
Defines logging helpers.
Definition: block.hpp:14