6#include <bitcoin-build-config.h>
14#include <chainparams.h>
63#include <versionbits.h>
101 if (height < -1 || height > active_chain.
Height()) {
108 pb = active_chain[height];
111 if (pb ==
nullptr || !pb->
nHeight)
124 int64_t maxTime = minTime;
125 for (
int i = 0; i <
lookup; i++) {
128 minTime = std::min(time, minTime);
129 maxTime = std::max(time, maxTime);
133 if (minTime == maxTime)
137 int64_t timeDiff = maxTime - minTime;
146 "Returns the estimated network hashes per second based on the last n blocks.\n"
147 "Pass in [blocks] to override # of blocks, -1 specifies since last difficulty change.\n"
148 "Pass in [height] to estimate the network speed at the time when a certain block was found.\n",
150 {
"nblocks",
RPCArg::Type::NUM,
RPCArg::Default{120},
"The number of previous blocks to calculate estimate from, or -1 for blocks since last difficulty change."},
180 if (block.nNonce == std::numeric_limits<uint32_t>::max()) {
184 block_out = std::make_shared<const CBlock>(std::move(block));
186 if (!process_new_block)
return true;
199 std::unique_ptr<BlockTemplate> block_template(miner.
createNewBlock({ .coinbase_output_script = coinbase_output_script },
false));
202 std::shared_ptr<const CBlock> block_out;
203 if (!
GenerateBlock(chainman, block_template->getBlock(), nMaxTries, block_out,
true)) {
209 blockHashes.
push_back(block_out->GetHash().GetHex());
218 const auto descs =
Parse(descriptor, key_provider, error,
false);
219 if (descs.empty())
return false;
220 if (descs.size() > 1) {
223 const auto& desc = descs.at(0);
224 if (desc->IsRange()) {
229 std::vector<CScript> scripts;
230 if (!desc->Expand(0, key_provider, scripts,
provider)) {
237 if (scripts.size() == 1) {
239 }
else if (scripts.size() == 4) {
253 "generatetodescriptor",
254 "Mine to a specified descriptor and return the block hashes.",
267 "\nGenerate 11 blocks to mydesc\n" +
HelpExampleCli(
"generatetodescriptor",
"11 \"mydesc\"")},
270 const auto num_blocks{self.
Arg<
int>(
"num_blocks")};
271 const auto max_tries{self.
Arg<uint64_t>(
"maxtries")};
273 CScript coinbase_output_script;
283 return generateBlocks(chainman, miner, coinbase_output_script, num_blocks, max_tries);
298 "Mine to a specified address and return the block hashes.",
310 "\nGenerate 11 blocks to myaddress\n"
312 +
"If you are using the " CLIENT_NAME
" wallet, you can get a new address to send the newly generated bitcoin to with:\n"
317 const int num_blocks{request.params[0].
getInt<
int>()};
318 const uint64_t max_tries{request.params[2].isNull() ?
DEFAULT_MAX_TRIES : request.params[2].getInt<
int>()};
331 return generateBlocks(chainman, miner, coinbase_output_script, num_blocks, max_tries);
339 "Mine a set of ordered transactions to a specified address or descriptor and return the block hash.\n"
340 "Transaction fees are not collected in the block reward.",
344 "Txids must reference transactions currently in the mempool.\n"
345 "All transactions must be valid and in valid order, otherwise the block will be rejected.",
360 "\nGenerate a block to myaddress, with txs rawtx and mempool_txid\n"
361 +
HelpExampleCli(
"generateblock", R
"("myaddress" '["rawtx", "mempool_txid"]')")
365 const auto address_or_descriptor = request.params[0].
get_str();
366 CScript coinbase_output_script;
382 std::vector<CTransactionRef> txs;
383 const auto raw_txs_or_txids = request.params[1].get_array();
384 for (
size_t i = 0; i < raw_txs_or_txids.size(); i++) {
385 const auto& str{raw_txs_or_txids[i].get_str()};
389 const auto tx{mempool.
get(*txid)};
394 txs.emplace_back(tx);
404 const bool process_new_block{request.params[2].isNull() ? true : request.params[2].get_bool()};
411 std::unique_ptr<BlockTemplate> block_template{miner.
createNewBlock({.use_mempool =
false, .coinbase_output_script = coinbase_output_script},
false)};
414 block = block_template->getBlock();
420 block.
vtx.insert(block.
vtx.end(), txs.begin(), txs.end());
428 std::shared_ptr<const CBlock> block_out;
431 if (!
GenerateBlock(chainman, std::move(block), max_tries, block_out, process_new_block) || !block_out) {
436 obj.
pushKV(
"hash", block_out->GetHash().GetHex());
437 if (!process_new_block) {
451 "Returns a json object containing mining-related information.",
458 {
RPCResult::Type::NUM,
"currentblockweight",
true,
"The block weight (including reserved weight for block header, txs count and coinbase tx) of the last assembled block (only present if a block was ever assembled)"},
459 {
RPCResult::Type::NUM,
"currentblocktx",
true,
"The number of block transactions (excluding coinbase) of the last assembled block (only present if a block was ever assembled)"},
467 {
RPCResult::Type::STR_HEX,
"signet_challenge",
true,
"The block challenge (aka. block script), in hexadecimal (only present if the current network is a signet)"},
477 RPCResult{
RPCResult::Type::ARR,
"warnings",
"any network and blockchain warnings (run with `-deprecatedrpc=warnings` to return the latest warning as a single string)",
499 obj.
pushKV(
"bestblockhash", tip.GetBlockHash().GetHex());
500 if (BlockAssembler::m_last_block_weight) obj.
pushKV(
"currentblockweight", *BlockAssembler::m_last_block_weight);
501 if (BlockAssembler::m_last_block_num_txs) obj.
pushKV(
"currentblocktx", *BlockAssembler::m_last_block_num_txs);
522 const std::vector<uint8_t>& signet_challenge =
524 obj.
pushKV(
"signet_challenge",
HexStr(signet_challenge));
536 return RPCMethod{
"prioritisetransaction",
537 "Accepts the transaction into mined blocks at a higher (or lower) priority\n",
541 " DEPRECATED. For forward compatibility use named arguments and omit this parameter.",
544 " Note, that this value is not a fee rate. It is a value to modify absolute fee of the TX.\n"
545 " The fee is not actually paid, only the algorithm for selecting transactions into a block\n"
546 " considers the transaction as it would have paid a higher (or lower) fee."},
559 const auto dummy{self.
MaybeArg<
double>(
"dummy")};
560 CAmount nAmount = request.params[2].getInt<int64_t>();
562 if (dummy && *dummy != 0) {
569 const auto& tx = mempool.
get(txid);
582 return RPCMethod{
"getprioritisedtransactions",
583 "Returns a map of all user-created (see prioritisetransaction) fee deltas by txid, and whether the tx is present in mempool.",
591 {
RPCResult::Type::NUM,
"modified_fee",
true,
"modified fee in satoshis. Only returned if in_mempool=true"},
606 result_inner.pushKV(
"fee_delta", delta_info.delta);
607 result_inner.pushKV(
"in_mempool", delta_info.in_mempool);
608 if (delta_info.in_mempool) {
609 result_inner.pushKV(
"modified_fee", *delta_info.modified_fee);
611 rpc_result.pushKVEnd(delta_info.txid.GetHex(), std::move(result_inner));
630 if (strRejectReason.empty())
632 return strRejectReason;
642 if (!gbt_optional_rule) {
643 s.insert(
s.begin(),
'!');
652 "If the request parameters include a 'mode' key, that is used to explicitly select between the default 'template' request or a 'proposal'.\n"
653 "It returns data needed to construct a block to work on.\n"
654 "For full specification, see BIPs 22, 23, 9, and 145:\n"
655 " https://github.com/bitcoin/bips/blob/master/bip-0022.mediawiki\n"
656 " https://github.com/bitcoin/bips/blob/master/bip-0023.mediawiki\n"
657 " https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki#getblocktemplate_changes\n"
658 " https://github.com/bitcoin/bips/blob/master/bip-0145.mediawiki\n",
685 {
RPCResult::Type::STR,
"",
"name of a rule the client must understand to some extent; see BIP 9 for format"},
689 {
RPCResult::Type::NUM,
"rulename",
"identifies the bit number as indicating acceptance and readiness for the named softfork rule"},
695 {
RPCResult::Type::NUM,
"vbrequired",
"bit mask of versionbits the server requires set in submissions"},
697 {
RPCResult::Type::ARR,
"transactions",
"contents of non-coinbase transactions that should be included in the next block",
706 {
RPCResult::Type::NUM,
"",
"transactions before this one (by 1-based index in 'transactions' list) that must be present in the final block if this one is"},
708 {
RPCResult::Type::NUM,
"fee",
"difference in value between transaction inputs and outputs (in satoshis); for coinbase transactions, this is a negative Number of the total collected block fees (ie, not including the block subsidy); if key is not present, fee is unknown and clients MUST NOT assume there isn't one"},
709 {
RPCResult::Type::NUM,
"sigops",
"total SigOps cost, as counted for purposes of block limits; if key is not present, sigop cost is unknown and clients MUST NOT assume it is zero"},
710 {
RPCResult::Type::NUM,
"weight",
"total transaction weight, as counted for purposes of block limits"},
717 {
RPCResult::Type::NUM,
"coinbasevalue",
"maximum allowable input to coinbase transaction, including the generation award and transaction fees (in satoshis)"},
718 {
RPCResult::Type::STR,
"longpollid",
"an id to include with a request to longpoll on an update to this template"},
723 {
RPCResult::Type::STR,
"value",
"A way the block template may be changed, e.g. 'time', 'transactions', 'prevblock'"},
733 {
RPCResult::Type::STR_HEX,
"default_witness_commitment",
true,
"a valid witness commitment for the unmodified block template"},
746 std::string strMode =
"template";
748 std::set<std::string> setClientRules;
749 if (!request.params[0].isNull())
755 else if (modeval.
isNull())
763 if (strMode ==
"proposal")
766 if (!dataval.
isStr())
780 return "duplicate-invalid";
781 return "duplicate-inconclusive";
789 for (
unsigned int i = 0; i < aClientRules.
size(); ++i) {
790 const UniValue& v = aClientRules[i];
791 setClientRules.insert(v.
get_str());
796 if (strMode !=
"template")
810 static unsigned int nTransactionsUpdatedLast;
833 unsigned int nTransactionsUpdatedLastLP;
838 const std::string& lpstr = lpval.
get_str();
842 hashWatchedChain =
ParseHashV(lpstr.substr(0, 64),
"longpollid");
843 nTransactionsUpdatedLastLP = LocaleIndependentAtoi<int64_t>(lpstr.substr(64));
848 hashWatchedChain = tip;
849 nTransactionsUpdatedLastLP = nTransactionsUpdatedLast;
859 std::optional<BlockRef> maybe_tip{miner.
waitTipChanged(hashWatchedChain, checktxtime)};
861 if (!maybe_tip)
break;
862 tip = maybe_tip->hash;
863 if (tip != hashWatchedChain)
break;
870 checktxtime = std::chrono::seconds(10);
883 if (consensusParams.
signet_blocks && !setClientRules.contains(
"signet")) {
888 if (!setClientRules.contains(
"segwit")) {
894 static int64_t time_start;
895 static std::unique_ptr<BlockTemplate> block_template;
900 pindexPrev =
nullptr;
916 pindexPrev = pindexPrevNew;
919 CBlock block{block_template->getBlock()};
922 UpdateTime(&block, consensusParams, pindexPrev);
931 std::map<Txid, int64_t> setTxIndex;
932 std::vector<CAmount> tx_fees{block_template->getTxFees()};
933 std::vector<int64_t> tx_sigops{block_template->getTxSigops()};
936 for (
const auto& it : block.vtx) {
939 setTxIndex[txHash] = i++;
956 entry.
pushKV(
"depends", std::move(deps));
958 int index_in_template = i - 2;
959 entry.
pushKV(
"fee", tx_fees.at(index_in_template));
960 int64_t nTxSigOps{tx_sigops.at(index_in_template)};
965 entry.
pushKV(
"sigops", nTxSigOps);
968 transactions.
push_back(std::move(entry));
981 result.
pushKV(
"capabilities", std::move(aCaps));
1001 for (
const auto& [
name, info] : gbtstatus.signalling) {
1003 if (!info.gbt_optional_rule && !setClientRules.contains(
name)) {
1005 block.nVersion &= ~info.mask;
1009 for (
const auto& [
name, info] : gbtstatus.locked_in) {
1010 block.nVersion |= info.mask;
1012 if (!info.gbt_optional_rule && !setClientRules.contains(
name)) {
1014 block.nVersion &= ~info.mask;
1018 for (
const auto& [
name, info] : gbtstatus.active) {
1020 if (!info.gbt_optional_rule && !setClientRules.contains(
name)) {
1026 result.
pushKV(
"version", block.nVersion);
1027 result.
pushKV(
"rules", std::move(aRules));
1028 result.
pushKV(
"vbavailable", std::move(vbavailable));
1029 result.
pushKV(
"vbrequired", 0);
1031 result.
pushKV(
"previousblockhash", block.hashPrevBlock.GetHex());
1032 result.
pushKV(
"transactions", std::move(transactions));
1033 result.
pushKV(
"coinbaseaux", std::move(aux));
1034 result.
pushKV(
"coinbasevalue", block.vtx[0]->vout[0].nValue);
1035 result.
pushKV(
"longpollid", tip.GetHex() +
ToString(nTransactionsUpdatedLast));
1038 result.
pushKV(
"mutable", std::move(aMutable));
1039 result.
pushKV(
"noncerange",
"00000000ffffffff");
1048 result.
pushKV(
"sigoplimit", nSigOpLimit);
1049 result.
pushKV(
"sizelimit", nSizeLimit);
1053 result.
pushKV(
"curtime", block.GetBlockTime());
1061 if (
auto coinbase{block_template->getCoinbaseTx()}; coinbase.required_outputs.size() > 0) {
1063 result.
pushKV(
"default_witness_commitment",
HexStr(coinbase.required_outputs[0].scriptPubKey));
1083 if (block->GetHash() !=
hash)
return;
1094 "Attempts to submit new block to network.\n"
1095 "See https://en.bitcoin.it/wiki/BIP_0022 for full specification.\n",
1111 std::shared_ptr<CBlock> blockptr = std::make_shared<CBlock>();
1112 CBlock& block = *blockptr;
1113 if (!
DecodeHexBlk(block, request.params[0].get_str())) {
1127 auto sc = std::make_shared<submitblock_StateCatcher>(block.
GetHash());
1129 bool accepted = chainman.
ProcessNewBlock(blockptr,
true,
true, &new_block);
1131 if (!new_block && accepted) {
1135 return "inconclusive";
1146 "Decode the given hexdata as a header and submit it as a candidate chain tip if valid."
1147 "\nThrows when the header is invalid.\n",
1198 for (
const auto& c : commands) {
1199 t.appendCommand(c.name, &c);
bool IsValidDestination(const CTxDestination &dest)
Check whether a CTxDestination corresponds to one with an address.
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
int64_t CAmount
Amount in satoshis (Can be negative)
double GetDifficulty(const CBlockIndex &blockindex)
Get the difficulty of the net wrt to the given block index.
@ BLOCK_VALID_SCRIPTS
Scripts & signatures ok.
@ BLOCK_FAILED_VALID
stage after last reached validness failed
const CChainParams & Params()
Return the currently selected parameters.
#define LIST_CHAIN_NAMES
List of possible chain / network names
#define CHECK_NONFATAL(condition)
Identity function.
std::vector< CTransactionRef > vtx
The block chain is a tree shaped structure starting with the genesis block at the root,...
bool IsValid(enum BlockStatus nUpTo) const EXCLUSIVE_LOCKS_REQUIRED(
Check whether this block index entry is valid up to the passed validity level.
CBlockIndex * pprev
pointer to the index of the predecessor of this block
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
uint256 GetBlockHash() const
int64_t GetBlockTime() const
int nHeight
height of the entry in the chain. The genesis block has height 0
An in-memory indexed chain of blocks.
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
int Height() const
Return the maximal height in the chain.
std::string GetChainTypeString() const
Return the chain type string.
const Consensus::Params & GetConsensus() const
ChainType GetChainType() const
Return the chain type.
size_t GetNodeCount(ConnectionDirection) const EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex)
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
const Wtxid & GetWitnessHash() const LIFETIMEBOUND
const Txid & GetHash() const LIFETIMEBOUND
const std::vector< CTxIn > vin
An input of a transaction.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
void PrioritiseTransaction(const Txid &hash, const CAmount &nFeeDelta)
Affect CreateNewBlock prioritisation of transactions.
CTransactionRef get(const Txid &hash) const
Return a mempool transaction with a given hash.
std::vector< delta_info > GetPrioritisedTransactions() const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Return a vector of all entries in mapDeltas with their corresponding delta_info.
unsigned long size() const
unsigned int GetTransactionsUpdated() const
Implement this to subscribe to events generated in validation and mempool.
Interface for managing multiple Chainstate objects, where each chainstate is associated with chainsta...
RecursiveMutex & GetMutex() const LOCK_RETURNED(
Alias for cs_main.
Chainstate & ActiveChainstate() const
Alternatives to CurrentChainstate() used by older code to query latest chainstate information without...
bool ProcessNewBlock(const std::shared_ptr< const CBlock > &block, bool force_processing, bool min_pow_checked, bool *new_block) LOCKS_EXCLUDED(cs_main)
Process an incoming block.
const util::SignalInterrupt & m_interrupt
VersionBitsCache m_versionbitscache
Track versionbit status.
const CChainParams & GetParams() const
bool ProcessNewBlockHeaders(std::span< const CBlockHeader > headers, bool min_pow_checked, BlockValidationState &state, const CBlockIndex **ppindex=nullptr) LOCKS_EXCLUDED(cs_main)
Process incoming block headers.
const Consensus::Params & GetConsensus() const
CChain & ActiveChain() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
void MaybeRebalanceCaches() EXCLUSIVE_LOCKS_REQUIRED(void UpdateUncommittedBlockStructures(CBlock &block, const CBlockIndex *pindexPrev) const
Check to see if caches are out of balance and if so, call ResizeCoinsCaches() as needed.
node::BlockManager m_blockman
A single BlockManager instance is shared across each constructed chainstate to avoid duplicating bloc...
Double ended buffer combining vector and stream-like interfaces.
auto MaybeArg(std::string_view key) const
Helper to get an optional request argument.
std::string ToString() const
auto Arg(std::string_view key) const
Helper to get a required or default-valued request argument.
void push_back(UniValue val)
const std::string & get_str() const
const UniValue & find_value(std::string_view key) const
const UniValue & get_obj() const
void pushKV(std::string key, UniValue val)
std::string GetRejectReason() const
std::string ToString() const
BIP9GBTStatus GBTStatus(const CBlockIndex &block_index, const Consensus::Params ¶ms) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
256-bit unsigned big integer.
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
std::string GetHex() const
std::string GetHex() const
Hex encoding of the number (with the most significant digits first).
Block template interface.
Interface giving clients (RPC, Stratum v2 Template Provider in the future) ability to create block te...
virtual std::optional< BlockRef > waitTipChanged(uint256 current_tip, MillisecondsDouble timeout=MillisecondsDouble::max())=0
Waits for the connected tip to change.
virtual bool isInitialBlockDownload()=0
Returns whether IBD is still in progress.
virtual std::optional< BlockRef > getTip()=0
Returns the hash and height for the tip of this chain.
virtual bool isTestChain()=0
If this chain is exclusively used for testing.
virtual std::unique_ptr< BlockTemplate > createNewBlock(const node::BlockCreateOptions &options={}, bool cooldown=true)=0
Construct a new block template.
Generate a new block, without valid proof-of-work.
CBlockIndex * LookupBlockIndex(const uint256 &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
submitblock_StateCatcher(const uint256 &hashIn)
BlockValidationState state
void BlockChecked(const std::shared_ptr< const CBlock > &block, const BlockValidationState &stateIn) override
Notifies listeners of a block validation result.
std::string GetHex() const
static transaction_identifier FromUint256(const uint256 &id)
static std::optional< transaction_identifier > FromHex(std::string_view hex)
static UniValue Parse(std::string_view raw, ParamFormat format=ParamFormat::JSON)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
auto lookup
Helper lookup function in the simulated cache stack.
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
static int32_t GetTransactionWeight(const CTransaction &tx)
constexpr int64_t MAX_BLOCK_SIGOPS_COST
The maximum allowed number of signature check operations in a block (network rule)
constexpr unsigned int MAX_BLOCK_SERIALIZED_SIZE
The maximum allowed size for a serialized block, in bytes (only for buffer size limits)
constexpr unsigned int MAX_BLOCK_WEIGHT
The maximum allowed weight for a block, see BIP 141 (network rule)
constexpr int WITNESS_SCALE_FACTOR
std::string EncodeHexTx(const CTransaction &tx)
bool DecodeHexTx(CMutableTransaction &tx, const std::string &hex_tx, bool try_no_witness, bool try_witness)
bool DecodeHexBlockHeader(CBlockHeader &header, const std::string &hex_header)
bool DecodeHexBlk(CBlock &block, const std::string &strHexBlk)
UniValue ValueFromAmount(const CAmount amount)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
bool DeploymentActiveAfter(const CBlockIndex *pindexPrev, const Consensus::Params ¶ms, Consensus::BuriedDeployment dep, VersionBitsCache &versionbitscache)
Determine if a deployment is active for the next block.
const std::string CURRENCY_UNIT
std::string HexStr(const std::span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
CTxDestination DecodeDestination(const std::string &str, std::string &error_msg, std::vector< int > *error_locations)
is used externally by mining IPC clients, so it should only declare simple data definitions.
void RegenerateCommitments(CBlock &block, ChainstateManager &chainman)
Update an old GenerateCoinbaseCommitment from CreateNewBlock after the block txs have changed.
int64_t UpdateTime(CBlockHeader *pblock, const Consensus::Params &consensusParams, const CBlockIndex *pindexPrev)
BlockCreateOptions FlattenMiningOptions(BlockCreateOptions options)
Replace null optional values with their hardcoded defaults.
int64_t GetMinimumTime(const CBlockIndex *pindexPrev, const int64_t difficulty_adjustment_interval)
Get the minimum time a miner should use in the next block.
UniValue GetWarningsForRpc(const Warnings &warnings, bool use_deprecated)
RPC helper function that wraps warnings.GetMessages().
std::string ToString(const T &t)
Locale-independent version of std::to_string.
std::vector< uint32_t > GetDust(const CTransaction &tx, CFeeRate dust_relay_rate)
Get the vout index numbers of all dust outputs.
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params ¶ms)
Check whether a block hash satisfies the proof-of-work requirement specified by nBits.
constexpr TransactionSerParams TX_WITH_WITNESS
static CTransactionRef MakeTransactionRef(Tx &&txIn)
UniValue JSONRPCError(int code, const std::string &message)
static RPCMethod getblocktemplate()
static UniValue GetNetworkHashPS(int lookup, int height, const CChain &active_chain)
Return average network hashes per second based on the last 'lookup' blocks, or from the last difficul...
static RPCMethod getmininginfo()
static bool getScriptFromDescriptor(std::string_view descriptor, CScript &script, std::string &error)
static UniValue generateBlocks(ChainstateManager &chainman, Mining &miner, const CScript &coinbase_output_script, int nGenerate, uint64_t nMaxTries)
static std::string gbt_rule_value(const std::string &name, bool gbt_optional_rule)
static RPCMethod submitblock()
static UniValue BIP22ValidationResult(const BlockValidationState &state)
static RPCMethod getprioritisedtransactions()
static RPCMethod generatetodescriptor()
static RPCMethod generate()
static RPCMethod generateblock()
static RPCMethod prioritisetransaction()
static bool GenerateBlock(ChainstateManager &chainman, CBlock &&block, uint64_t &max_tries, std::shared_ptr< const CBlock > &block_out, bool process_new_block)
static RPCMethod generatetoaddress()
static RPCMethod getnetworkhashps()
void RegisterMiningRPCCommands(CRPCTable &t)
static RPCMethod submitheader()
constexpr uint64_t DEFAULT_MAX_TRIES
Default max iterations to try in RPC generatetodescriptor, generatetoaddress, and generateblock.
@ RPC_MISC_ERROR
General application defined errors.
@ RPC_TYPE_ERROR
Unexpected type was passed as parameter.
@ RPC_CLIENT_NOT_CONNECTED
P2P client errors.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ RPC_VERIFY_ERROR
General error during transaction or block submission.
@ RPC_CLIENT_IN_INITIAL_DOWNLOAD
Still downloading initial blocks.
@ RPC_DESERIALIZATION_ERROR
Error parsing or validating structure in raw format.
@ RPC_INVALID_ADDRESS_OR_KEY
Invalid address or key.
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
uint256 GetTarget(const CBlockIndex &blockindex, const uint256 pow_limit)
std::string HelpExampleRpc(const std::string &methodname, const std::string &args)
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
uint256 ParseHashV(const UniValue &v, std::string_view name)
Utilities: convert hex-encoded Values (throws error if not hex).
bool IsDeprecatedRPCEnabled(const std::string &method)
bool IsRPCRunning()
Query whether RPC is running.
ChainstateManager & EnsureAnyChainman(const std::any &context)
void NextEmptyBlockIndex(CBlockIndex &tip, const Consensus::Params &consensusParams, CBlockIndex &next_index)
Return an empty block index on top of the tip, with height, time and nBits set.
NodeContext & EnsureAnyNodeContext(const std::any &context)
CTxMemPool & EnsureMemPool(const NodeContext &node)
ChainstateManager & EnsureChainman(const NodeContext &node)
CTxMemPool & EnsureAnyMemPool(const std::any &context)
interfaces::Mining & EnsureMining(const NodeContext &node)
CConnman & EnsureConnman(const NodeContext &node)
A mutable version of CTransaction.
Parameters that influence chain consensus.
std::vector< uint8_t > signet_challenge
int64_t DifficultyAdjustmentInterval() const
bool signet_blocks
If true, witness commitments contain a payload equal to a Bitcoin Script solution to the signet chall...
uint256 powLimit
Proof of work parameters.
@ STR_HEX
Special type that is a STR with only hex chars.
std::string DefaultHint
Hint for default value.
@ OMITTED
Optional argument for which the default value is omitted from help text for one of two reasons:
bool placeholder
If set, the argument is retained only for compatibility and should generally be omitted.
@ NUM_TIME
Special numeric to denote unix epoch time.
@ OBJ_DYN
Special dictionary with keys that are not literals.
@ STR_HEX
Special string with only hex chars.
@ STR_AMOUNT
Special string to represent a floating point amount.
Hash/height pair to help track and identify blocks.
ValidationSignals * signals
CFeeRate dust_relay_feerate
NodeContext struct containing references to chain state and connection state.
#define WAIT_LOCK(cs, name)
#define REVERSE_LOCK(g, cs)
FuzzedDataProvider provider
const UniValue NullUniValue
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
std::chrono::duration< double, std::chrono::milliseconds::period > MillisecondsDouble
BlockValidationState TestBlockValidity(Chainstate &chainstate, const CBlock &block, const bool check_pow, const bool check_merkle_root)
Verify a block, including transactions.