![]() |
Bitcoin Core 31.99.0
P2P Digital Currency
|
#include <cstddef>#include <memory>#include <string>#include <vector>Go to the source code of this file.
Namespaces | |
| namespace | node |
Functions | |
| std::vector< std::shared_ptr< CBlock > > | CreateBlockChain (size_t total_height, const CChainParams ¶ms) |
| Create a blockchain, starting from genesis. More... | |
| bool | BuildChain (const node::NodeContext &node, const CBlockIndex *pindex, const CScript &coinbase_script_pub_key, size_t length, std::vector< std::shared_ptr< CBlock > > &chain) |
Build a chain of length coinbase-only blocks on top of pindex (which need not be the active tip, allowing forks to be created) and submit their headers. More... | |
| COutPoint | MineBlock (const node::NodeContext &, const node::BlockCreateOptions &assembler_options) |
| Returns the generated coin. More... | |
| COutPoint | MineBlock (const node::NodeContext &, std::shared_ptr< CBlock > &block) |
| Returns the generated coin (or Null if the block was invalid). More... | |
| COutPoint | ProcessBlock (const node::NodeContext &, const std::shared_ptr< CBlock > &block) |
| Returns the generated coin (or Null if the block was invalid). More... | |
| std::shared_ptr< CBlock > | PrepareBlock (const node::NodeContext &node, const node::BlockCreateOptions &assembler_options) |
| Prepare a block to be mined. More... | |
| COutPoint | generatetoaddress (const node::NodeContext &, const std::string &address) |
| RPC-like helper function, returns the generated coin. More... | |
| bool BuildChain | ( | const node::NodeContext & | node, |
| const CBlockIndex * | pindex, | ||
| const CScript & | coinbase_script_pub_key, | ||
| size_t | length, | ||
| std::vector< std::shared_ptr< CBlock > > & | chain | ||
| ) |
Build a chain of length coinbase-only blocks on top of pindex (which need not be the active tip, allowing forks to be created) and submit their headers.
The blocks themselves are returned in chain for the caller to process.
Definition at line 78 of file mining.cpp.
| std::vector< std::shared_ptr< CBlock > > CreateBlockChain | ( | size_t | total_height, |
| const CChainParams & | params | ||
| ) |
Create a blockchain, starting from genesis.
Definition at line 43 of file mining.cpp.
| COutPoint generatetoaddress | ( | const node::NodeContext & | node, |
| const std::string & | address | ||
| ) |
RPC-like helper function, returns the generated coin.
Definition at line 34 of file mining.cpp.
| COutPoint MineBlock | ( | const node::NodeContext & | node, |
| const node::BlockCreateOptions & | assembler_options | ||
| ) |
Returns the generated coin.
Definition at line 119 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 143 of file mining.cpp.
| std::shared_ptr< CBlock > PrepareBlock | ( | const node::NodeContext & | node, |
| const node::BlockCreateOptions & | assembler_options | ||
| ) |
Prepare a block to be mined.
Definition at line 172 of file mining.cpp.
| COutPoint ProcessBlock | ( | const node::NodeContext & | node, |
| const std::shared_ptr< CBlock > & | block | ||
| ) |
Returns the generated coin (or Null if the block was invalid).
Definition at line 153 of file mining.cpp.