veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
miner.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_MINER_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_MINER_HPP_
8
9#include <memory>
10#include <random>
11#include <stdexcept>
12#include <veriblock/pop/stateless_validation.hpp>
13
14#include "blocktree.hpp"
15
16namespace altintegration {
17
20template <typename Block, typename ChainParams>
21struct Miner {
22 using merkle_t = typename Block::merkle_t;
23 using index_t = BlockIndex<Block>;
24
25 Miner(const ChainParams& params) : params_(params) {}
26
27 void createBlock(Block& block) {
28 while (!checkProofOfWork(block, params_)) {
29 // to guarantee that miner will not create exactly same blocks even if
30 // time and merkle roots are equal for prev block and new block
31 block.setNonce(nonce++);
32 if (block.getNonce() >=
33 (std::numeric_limits<decltype(block.getNonce())>::max)()) {
34 block.setTimestamp(block.getTimestamp() + 1);
35 nonce = 0;
36 }
37 }
38 }
39
40 // One must define their own template specialization for given Block and
41 // ChainParams types. Otherwise, get pretty compilation error.
42 Block getBlockTemplate(const BlockIndex<Block>& tip,
43 const merkle_t& merkleRoot);
44
45 Block createNextBlock(const index_t& prev, const merkle_t& merkle) {
46 Block block = getBlockTemplate(prev, merkle);
47 createBlock(block);
48 return block;
49 }
50
51 Block createNextBlock(const index_t& prev) {
52 merkle_t merkle;
53 std::generate(
54 merkle.begin(), merkle.end(), []() { return uint8_t(rand() & 0xff); });
55 return createNextBlock(prev, merkle);
56 }
57
58 private:
59 const ChainParams& params_;
60 uint32_t nonce = 0;
61};
62
63} // namespace altintegration
64
65#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_MINER_HPP_
Defines logging helpers.
Definition: block.hpp:14
bool checkProofOfWork(const BtcBlock &block, const BtcChainParams &param)
Stateless validation for a Block.