2024-06-07 11:22:44 +02:00
|
|
|
// Copyright (c) 2024 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_INTERFACES_MINING_H
|
|
|
|
#define BITCOIN_INTERFACES_MINING_H
|
|
|
|
|
2024-08-26 10:51:19 +02:00
|
|
|
#include <consensus/amount.h> // for CAmount
|
2024-07-08 19:08:11 +02:00
|
|
|
#include <interfaces/types.h> // for BlockRef
|
2024-08-26 10:51:19 +02:00
|
|
|
#include <node/types.h> // for BlockCreateOptions
|
|
|
|
#include <primitives/block.h> // for CBlock, CBlockHeader
|
|
|
|
#include <primitives/transaction.h> // for CTransactionRef
|
|
|
|
#include <stdint.h> // for int64_t
|
|
|
|
#include <uint256.h> // for uint256
|
2024-08-26 11:30:24 +02:00
|
|
|
#include <util/time.h> // for MillisecondsDouble
|
2024-07-16 10:13:28 +02:00
|
|
|
|
2024-08-26 10:51:19 +02:00
|
|
|
#include <memory> // for unique_ptr, shared_ptr
|
|
|
|
#include <optional> // for optional
|
|
|
|
#include <vector> // for vector
|
2024-05-30 15:55:02 +02:00
|
|
|
|
2024-06-07 11:22:44 +02:00
|
|
|
namespace node {
|
|
|
|
struct NodeContext;
|
|
|
|
} // namespace node
|
|
|
|
|
2024-06-10 17:58:13 +02:00
|
|
|
class BlockValidationState;
|
2024-06-10 17:03:33 +02:00
|
|
|
class CScript;
|
2024-06-10 17:58:13 +02:00
|
|
|
|
2024-06-07 11:22:44 +02:00
|
|
|
namespace interfaces {
|
|
|
|
|
2024-08-26 10:51:19 +02:00
|
|
|
//! Block template interface
|
|
|
|
class BlockTemplate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~BlockTemplate() = default;
|
|
|
|
|
|
|
|
virtual CBlockHeader getBlockHeader() = 0;
|
|
|
|
virtual CBlock getBlock() = 0;
|
|
|
|
|
|
|
|
virtual std::vector<CAmount> getTxFees() = 0;
|
|
|
|
virtual std::vector<int64_t> getTxSigops() = 0;
|
|
|
|
|
|
|
|
virtual CTransactionRef getCoinbaseTx() = 0;
|
|
|
|
virtual std::vector<unsigned char> getCoinbaseCommitment() = 0;
|
|
|
|
virtual int getWitnessCommitmentIndex() = 0;
|
2024-07-12 16:08:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute merkle path to the coinbase transaction
|
|
|
|
*
|
|
|
|
* @return merkle path ordered from the deepest
|
|
|
|
*/
|
|
|
|
virtual std::vector<uint256> getCoinbaseMerklePath() = 0;
|
2024-07-15 15:31:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct and broadcast the block.
|
|
|
|
*
|
|
|
|
* @returns if the block was processed, independent of block validity
|
|
|
|
*/
|
|
|
|
virtual bool submitSolution(uint32_t version, uint32_t timestamp, uint32_t nonce, CMutableTransaction coinbase) = 0;
|
2024-08-26 10:51:19 +02:00
|
|
|
};
|
|
|
|
|
2024-06-07 11:22:44 +02:00
|
|
|
//! Interface giving clients (RPC, Stratum v2 Template Provider in the future)
|
|
|
|
//! ability to create block templates.
|
|
|
|
class Mining
|
|
|
|
{
|
|
|
|
public:
|
2024-07-08 11:11:58 +02:00
|
|
|
virtual ~Mining() = default;
|
2024-06-07 11:22:44 +02:00
|
|
|
|
|
|
|
//! If this chain is exclusively used for testing
|
|
|
|
virtual bool isTestChain() = 0;
|
|
|
|
|
2024-06-18 21:07:51 +02:00
|
|
|
//! Returns whether IBD is still in progress.
|
|
|
|
virtual bool isInitialBlockDownload() = 0;
|
|
|
|
|
2024-07-08 19:08:11 +02:00
|
|
|
//! Returns the hash and height for the tip of this chain
|
|
|
|
virtual std::optional<BlockRef> getTip() = 0;
|
2024-05-30 15:55:02 +02:00
|
|
|
|
2024-08-26 10:51:19 +02:00
|
|
|
/**
|
2024-12-06 14:24:21 +07:00
|
|
|
* Waits for the connected tip to change. During node initialization, this will
|
|
|
|
* wait until the tip is connected.
|
2024-08-26 11:30:24 +02:00
|
|
|
*
|
|
|
|
* @param[in] current_tip block hash of the current chain tip. Function waits
|
2024-09-25 09:59:05 +02:00
|
|
|
* for the chain tip to differ from this.
|
2024-08-26 11:30:24 +02:00
|
|
|
* @param[in] timeout how long to wait for a new tip
|
|
|
|
* @returns Hash and height of the current chain tip after this call.
|
|
|
|
*/
|
|
|
|
virtual BlockRef waitTipChanged(uint256 current_tip, MillisecondsDouble timeout = MillisecondsDouble::max()) = 0;
|
|
|
|
|
|
|
|
/**
|
2024-06-10 17:03:33 +02:00
|
|
|
* Construct a new block template
|
|
|
|
*
|
|
|
|
* @param[in] script_pub_key the coinbase output
|
2024-07-16 10:13:28 +02:00
|
|
|
* @param[in] options options for creating the block
|
2024-06-10 17:03:33 +02:00
|
|
|
* @returns a block template
|
|
|
|
*/
|
2024-08-26 10:51:19 +02:00
|
|
|
virtual std::unique_ptr<BlockTemplate> createNewBlock(const CScript& script_pub_key, const node::BlockCreateOptions& options = {}) = 0;
|
2024-06-25 13:33:35 +02:00
|
|
|
|
2024-05-30 17:06:59 +02:00
|
|
|
/**
|
|
|
|
* Processes new block. A valid new block is automatically relayed to peers.
|
|
|
|
*
|
|
|
|
* @param[in] block The block we want to process.
|
|
|
|
* @param[out] new_block A boolean which is set to indicate if the block was first received via this call
|
|
|
|
* @returns If the block was processed, independently of block validity
|
|
|
|
*/
|
|
|
|
virtual bool processNewBlock(const std::shared_ptr<const CBlock>& block, bool* new_block) = 0;
|
2024-06-10 17:03:33 +02:00
|
|
|
|
2024-05-30 16:46:29 +02:00
|
|
|
//! Return the number of transaction updates in the mempool,
|
|
|
|
//! used to decide whether to make a new block template.
|
|
|
|
virtual unsigned int getTransactionsUpdated() = 0;
|
|
|
|
|
2024-06-10 17:58:13 +02:00
|
|
|
/**
|
|
|
|
* Check a block is completely valid from start to finish.
|
|
|
|
* Only works on top of our current best block.
|
|
|
|
* Does not check proof-of-work.
|
|
|
|
*
|
|
|
|
* @param[in] block the block to validate
|
|
|
|
* @param[in] check_merkle_root call CheckMerkleRoot()
|
2024-06-25 13:33:35 +02:00
|
|
|
* @param[out] state details of why a block failed to validate
|
2024-06-26 13:42:55 +02:00
|
|
|
* @returns false if it does not build on the current tip, or any of the checks fail
|
2024-06-10 17:58:13 +02:00
|
|
|
*/
|
2024-06-25 13:33:35 +02:00
|
|
|
virtual bool testBlockValidity(const CBlock& block, bool check_merkle_root, BlockValidationState& state) = 0;
|
2024-06-10 17:58:13 +02:00
|
|
|
|
2024-06-07 11:22:44 +02:00
|
|
|
//! Get internal node context. Useful for RPC and testing,
|
|
|
|
//! but not accessible across processes.
|
|
|
|
virtual node::NodeContext* context() { return nullptr; }
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Return implementation of Mining interface.
|
|
|
|
std::unique_ptr<Mining> MakeMining(node::NodeContext& node);
|
|
|
|
|
|
|
|
} // namespace interfaces
|
|
|
|
|
|
|
|
#endif // BITCOIN_INTERFACES_MINING_H
|