6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_MINER_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_MINER_HPP_
12#include <veriblock/pop/stateless_validation.hpp>
14#include "blocktree.hpp"
20template <
typename Block,
typename ChainParams>
22 using merkle_t =
typename Block::merkle_t;
23 using index_t = BlockIndex<Block>;
25 Miner(
const ChainParams& params) : params_(params) {}
27 void createBlock(Block& block) {
31 block.setNonce(nonce++);
32 if (block.getNonce() >=
33 (std::numeric_limits<
decltype(block.getNonce())>::max)()) {
34 block.setTimestamp(block.getTimestamp() + 1);
42 Block getBlockTemplate(
const BlockIndex<Block>& tip,
43 const merkle_t& merkleRoot);
45 Block createNextBlock(
const index_t& prev,
const merkle_t& merkle) {
46 Block block = getBlockTemplate(prev, merkle);
51 Block createNextBlock(
const index_t& prev) {
54 merkle.begin(), merkle.end(), []() { return uint8_t(rand() & 0xff); });
55 return createNextBlock(prev, merkle);
59 const ChainParams& params_;
bool checkProofOfWork(const BtcBlock &block, const BtcChainParams ¶m)
Stateless validation for a Block.