![]() |
Bitcoin Core
26.99.0
P2P Digital Currency
|
#include <test/util/mining.h>
#include <chainparams.h>
#include <consensus/merkle.h>
#include <consensus/validation.h>
#include <key_io.h>
#include <node/context.h>
#include <pow.h>
#include <primitives/transaction.h>
#include <test/util/script.h>
#include <util/check.h>
#include <validation.h>
#include <validationinterface.h>
#include <versionbits.h>
Go to the source code of this file.
Classes | |
struct | BlockValidationStateCatcher |
Functions | |
COutPoint | generatetoaddress (const NodeContext &node, const std::string &address) |
RPC-like helper function, returns the generated coin. More... | |
std::vector< std::shared_ptr< CBlock > > | CreateBlockChain (size_t total_height, const CChainParams ¶ms) |
Create a blockchain, starting from genesis. More... | |
COutPoint | MineBlock (const NodeContext &node, const CScript &coinbase_scriptPubKey) |
Returns the generated coin. More... | |
COutPoint | MineBlock (const NodeContext &node, std::shared_ptr< CBlock > &block) |
Returns the generated coin (or Null if the block was invalid). More... | |
std::shared_ptr< CBlock > | PrepareBlock (const NodeContext &node, const CScript &coinbase_scriptPubKey, const BlockAssembler::Options &assembler_options) |
std::shared_ptr< CBlock > | PrepareBlock (const NodeContext &node, const CScript &coinbase_scriptPubKey) |
Prepare a block to be mined. More... | |
std::vector<std::shared_ptr<CBlock> > CreateBlockChain | ( | size_t | total_height, |
const CChainParams & | params | ||
) |
Create a blockchain, starting from genesis.
Definition at line 32 of file mining.cpp.
COutPoint generatetoaddress | ( | const NodeContext & | node, |
const std::string & | address | ||
) |
RPC-like helper function, returns the generated coin.
Definition at line 23 of file mining.cpp.
COutPoint MineBlock | ( | const NodeContext & | node, |
const CScript & | coinbase_scriptPubKey | ||
) |
Returns the generated coin.
Definition at line 63 of file mining.cpp.
COutPoint MineBlock | ( | const node::NodeContext & | node, |
std::shared_ptr< CBlock > & | block | ||
) |
Returns the generated coin (or Null if the block was invalid).
It is recommended to call RegenerateCommitments before mining the block to avoid merkle tree mismatches.
Definition at line 87 of file mining.cpp.
std::shared_ptr<CBlock> PrepareBlock | ( | const NodeContext & | node, |
const CScript & | coinbase_scriptPubKey | ||
) |
Prepare a block to be mined.
Definition at line 125 of file mining.cpp.
std::shared_ptr<CBlock> PrepareBlock | ( | const NodeContext & | node, |
const CScript & | coinbase_scriptPubKey, | ||
const BlockAssembler::Options & | assembler_options | ||
) |
Definition at line 111 of file mining.cpp.