10#include <chainparams.h>
62 const CChain &active_chain) {
65 if (height >= 0 && height < active_chain.
Height()) {
66 pb = active_chain[height];
69 if (pb ==
nullptr || !pb->
nHeight) {
87 int64_t maxTime = minTime;
88 for (
int i = 0; i < lookup; i++) {
91 minTime = std::min(time, minTime);
92 maxTime = std::max(time, maxTime);
97 if (minTime == maxTime) {
102 int64_t timeDiff = maxTime - minTime;
110 "Returns the estimated network hashes per second based on the last n "
112 "Pass in [blocks] to override # of blocks, -1 specifies since last "
113 "difficulty change.\n"
114 "Pass in [height] to estimate the network speed at the time when a "
115 "certain block was found.\n",
118 "The number of blocks, or -1 for blocks since last difficulty "
121 "To estimate at the time of the given height."},
131 !request.params[0].isNull() ? request.params[0].getInt<
int>()
133 !request.params[1].isNull() ? request.params[1].getInt<
int>()
142 uint64_t &max_tries,
BlockHash &block_hash) {
148 while (max_tries > 0 &&
149 block.
nNonce < std::numeric_limits<uint32_t>::max() &&
158 if (block.
nNonce == std::numeric_limits<uint32_t>::max()) {
162 std::shared_ptr<const CBlock> shared_pblock =
163 std::make_shared<const CBlock>(block);
169 "ProcessNewBlock, block not accepted");
179 const CScript &coinbase_script,
int nGenerate,
180 uint64_t nMaxTries) {
183 std::unique_ptr<CBlockTemplate> pblocktemplate(
186 .CreateNewBlock(coinbase_script));
188 if (!pblocktemplate.get()) {
192 CBlock *pblock = &pblocktemplate->block;
200 if (!block_hash.
IsNull()) {
213 CScript &script, std::string &
error) {
216 Parse(descriptor, key_provider,
error,
false);
218 if (desc->IsRange()) {
220 "Ranged descriptor not accepted. Maybe pass "
221 "through deriveaddresses first?");
225 std::vector<CScript> scripts;
226 if (!desc->Expand(0, key_provider, scripts, provider)) {
229 strprintf(
"Cannot derive script without private keys"));
236 if (scripts.size() == 1) {
237 script = scripts.at(0);
240 script = scripts.at(1);
251 "generatetodescriptor",
252 "Mine blocks immediately to a specified descriptor (before the RPC "
256 "How many blocks are generated immediately."},
258 "The descriptor to send the newly generated bitcoin to."},
260 "How many iterations to try."},
264 "hashes of blocks generated",
272 const int num_blocks{request.params[0].
getInt<
int>()};
273 const uint64_t max_tries{request.params[2].isNull()
275 : request.params[2].getInt<
int>()};
277 CScript coinbase_script;
280 coinbase_script,
error)) {
289 coinbase_script, num_blocks, max_tries);
296 "has been replaced by the -generate cli option. Refer to "
297 "-help for more information.",
311 "Mine blocks immediately to a specified address before the "
312 "RPC call returns)\n",
315 "How many blocks are generated immediately."},
317 "The address to send the newly generated bitcoin to."},
319 "How many iterations to try."},
323 "hashes of blocks generated",
328 "\nGenerate 11 blocks to myaddress\n" +
330 "If you are using the " PACKAGE_NAME
" wallet, you can "
331 "get a new address to send the newly generated bitcoin to with:\n" +
335 const int num_blocks{request.params[0].
getInt<
int>()};
336 const uint64_t max_tries{request.params[2].isNull()
338 : request.params[2].getInt<int64_t>()};
341 request.params[1].get_str(), config.GetChainParams());
344 "Error: Invalid address");
354 coinbase_script, num_blocks, max_tries);
362 "Mine a block with a set of ordered transactions immediately to a "
363 "specified address or descriptor (before the RPC call returns)\n",
366 "The address or descriptor to send the newly generated bitcoin "
372 "An array of hex strings which are either txids or raw "
374 "Txids must reference transactions currently in the mempool.\n"
375 "All transactions must be valid and in valid order, otherwise "
376 "the block will be rejected.",
391 "\nGenerate a block to myaddress, with txs rawtx and "
394 R
"("myaddress" '["rawtx", "mempool_txid"]')")},
397 const auto address_or_descriptor = request.params[0].
get_str();
398 CScript coinbase_script;
401 const CChainParams &chainparams = config.GetChainParams();
405 const auto destination =
409 "Error: Invalid address or descriptor");
418 std::vector<CTransactionRef> txs;
419 const auto raw_txs_or_txids = request.params[1].get_array();
420 for (
size_t i = 0; i < raw_txs_or_txids.size(); i++) {
421 const auto str(raw_txs_or_txids[i].get_str());
426 const auto tx = mempool.
get(
TxId(hash));
430 strprintf(
"Transaction %s not in mempool.", str));
433 txs.emplace_back(tx);
440 strprintf(
"Transaction decode failed for %s", str));
450 std::unique_ptr<CBlockTemplate> blocktemplate(
452 node.avalanche.get()}
453 .CreateNewBlock(coinbase_script));
454 if (!blocktemplate) {
456 "Couldn't create new block");
458 block = blocktemplate->block;
464 block.
vtx.insert(block.
vtx.end(), txs.begin(), txs.end());
477 .withCheckMerkleRoot(
false))) {
479 strprintf(
"TestBlockValidity failed: %s",
506 "Returns a json object containing mining-related "
516 "The block size of the last assembled block (only present if "
517 "a block was ever assembled)"},
519 "The number of block transactions of the last assembled block "
520 "(only present if a block was ever assembled)"},
523 "The network hashes per second"},
526 "current network name (main, test, regtest)"},
528 "any network and blockchain warnings"},
542 if (BlockAssembler::m_last_block_size) {
543 obj.
pushKV(
"currentblocksize",
544 *BlockAssembler::m_last_block_size);
546 if (BlockAssembler::m_last_block_num_txs) {
547 obj.
pushKV(
"currentblocktx",
548 *BlockAssembler::m_last_block_num_txs);
551 obj.
pushKV(
"networkhashps",
553 obj.
pushKV(
"pooledtx", uint64_t(mempool.
size()));
554 obj.
pushKV(
"chain", config.GetChainParams().NetworkIDString());
565 "prioritisetransaction",
566 "Accepts the transaction into mined blocks at a higher "
567 "(or lower) priority\n",
570 "The transaction id."},
572 "API-Compatibility for previous API. Must be zero or null.\n"
573 " DEPRECATED. For forward compatibility "
574 "use named arguments and omit this parameter."},
576 "The fee value (in satoshis) to add (or subtract, if negative).\n"
577 " The fee is not actually paid, only the "
578 "algorithm for selecting transactions into a block\n"
579 " considers the transaction as it would "
580 "have paid a higher (or lower) fee."},
591 Amount nAmount = request.params[2].getInt<int64_t>() *
SATOSHI;
593 if (!(request.params[1].isNull() ||
594 request.params[1].get_real() == 0)) {
597 "Priority is no longer supported, dummy argument to "
598 "prioritisetransaction must be 0.");
622 if (strRejectReason.empty()) {
625 return strRejectReason;
635 "If the request parameters include a 'mode' key, that is used to "
636 "explicitly select between the default 'template' request or a "
638 "It returns data needed to construct a block to work on.\n"
639 "For full specification, see BIPs 22, 23, 9, and 145:\n"
641 "https://github.com/bitcoin/bips/blob/master/"
642 "bip-0022.mediawiki\n"
644 "https://github.com/bitcoin/bips/blob/master/"
645 "bip-0023.mediawiki\n"
647 "https://github.com/bitcoin/bips/blob/master/"
648 "bip-0009.mediawiki#getblocktemplate_changes\n"
654 "Format of the template",
658 "This must be set to \"template\", \"proposal\" (see BIP "
669 "client side supported feature, 'longpoll', "
670 "'coinbasetxn', 'coinbasevalue', 'proposal', "
671 "'serverlist', 'workid'"},
678 RPCResult{
"If the proposal was accepted with mode=='proposal'",
680 RPCResult{
"If the proposal was not accepted with mode=='proposal'",
689 "The preferred block version"},
691 "The hash of current highest block"},
694 "contents of non-coinbase transactions that should be "
695 "included in the next block",
702 "transaction data encoded in hexadecimal "
705 "transaction id encoded in little-endian "
708 "hash encoded in little-endian hexadecimal"},
714 "transactions before this one (by 1-based "
715 "index in 'transactions' list) that must "
716 "be present in the final block if this one "
720 "difference in value between transaction inputs "
721 "and outputs (in satoshis); for coinbase "
722 "transactions, this is a negative Number of the "
723 "total collected block fees (ie, not including "
724 "the block subsidy); "
725 "if key is not present, fee is unknown and "
726 "clients MUST NOT assume there isn't one"},
728 "total sigChecks, as counted for purposes of "
729 "block limits; if key is not present, sigChecks "
730 "are unknown and clients MUST NOT assume it is "
736 "data that should be included in the coinbase's scriptSig "
742 "maximum allowable input to coinbase transaction, "
743 "including the generation award and transaction fees (in "
747 "information for coinbase transaction",
751 "information related to the coinbase miner fund."
752 "This will NOT be set if -simplegbt is enabled",
757 "List of valid addresses for the miner fund "
764 "The minimum value the miner fund output must "
770 "information related to the coinbase staking reward "
771 "output, only set if the -avalanchestakingrewards "
772 "option is enabled and if the node is able to "
773 "determine a winner. This will NOT be set if "
774 "-simplegbt is enabled",
778 "The proof payout script",
781 "Decoded payout script"},
783 "Raw payout script in hex format"},
785 "The output type (e.g. " +
788 "The required signatures"},
798 "The minimum value the staking reward output "
805 "The minimum timestamp appropriate for the next block "
806 "time, expressed in " +
810 "list of ways the block template may be changed",
813 "A way the block template may be changed, e.g. "
814 "'time', 'transactions', 'prevblock'"},
817 "A range of valid nonces"},
819 "limit of sigChecks in blocks"},
824 "compressed target of next block"},
826 "The height of the next block"},
829 "The real-time target parameters. Only present after the "
830 "Nov. 15, 2024 upgrade activated and if -enablertt is set",
834 "The time the preview block headers were received, "
837 ". Contains 4 values for headers at height N-2, "
838 "N-5, N-11 and N-17.",
841 "The time the block header was received, "
846 "The previous block compressed target"},
850 "The real-time target in compact format"},
854 "information related to the coinbase miner fund."
855 "This will ONLY be set if -simplegbt is enabled",
858 "The scriptpubkey for the miner fund output in "
861 "The minimum value the miner fund output must "
867 "information related to the coinbase staking reward "
868 "output, only set if the -avalanchestakingrewards "
869 "option is enabled and if the node is able to "
870 "determine a winner. This will ONLY be set if "
871 "-simplegbt is enabled",
874 "The scriptpubkey for the staking reward "
875 "output in hex format"},
877 "The minimum value the staking reward output must "
891 const CChainParams &chainparams = config.GetChainParams();
893 std::string strMode =
"template";
895 std::set<std::string> setClientRules;
898 if (!request.params[0].isNull()) {
901 if (modeval.
isStr()) {
903 }
else if (modeval.
isNull()) {
910 if (strMode ==
"proposal") {
912 if (!dataval.
isStr()) {
915 "Missing data String key for proposal");
921 "Block decode failed");
931 if (pindex->nStatus.isInvalid()) {
932 return "duplicate-invalid";
934 return "duplicate-inconclusive";
941 return "inconclusive-not-best-prevblk";
948 .withCheckMerkleRoot(
true));
953 if (strMode !=
"template") {
960 "Bitcoin is not connected!");
966 " is in initial sync and waiting for blocks...");
969 static unsigned int nTransactionsUpdatedLast;
979 std::chrono::steady_clock::time_point checktxtime;
980 unsigned int nTransactionsUpdatedLastLP;
984 std::string lpstr = lpval.
get_str();
987 ParseHashV(lpstr.substr(0, 64),
"longpollid");
988 nTransactionsUpdatedLastLP =
atoi64(lpstr.substr(64));
993 nTransactionsUpdatedLastLP = nTransactionsUpdatedLast;
997 const auto initialLongpollDelay = isRegtest ? 5s : 1min;
998 const auto newTxCheckLongpollDelay = isRegtest ? 1s : 10s;
1004 std::chrono::steady_clock::now() + initialLongpollDelay;
1011 std::cv_status::timeout) {
1016 nTransactionsUpdatedLastLP) {
1019 checktxtime += newTxCheckLongpollDelay;
1048 static int64_t nStart;
1049 static std::unique_ptr<CBlockTemplate> pblocktemplate;
1050 if (pindexPrev != active_chain.
Tip() ||
1055 pindexPrev =
nullptr;
1064 CScript scriptDummy = CScript() <<
OP_TRUE;
1066 &mempool,
node.avalanche.get()}
1067 .CreateNewBlock(scriptDummy);
1068 if (!pblocktemplate) {
1073 pindexPrev = pindexPrevNew;
1078 CBlock *pblock = &pblocktemplate->block;
1081 int64_t adjustedTime =
1083 UpdateTime(pblock, chainparams, pindexPrev, adjustedTime);
1093 int index_in_template = 0;
1094 for (
const auto &it : pblock->
vtx) {
1095 const CTransaction &tx = *it;
1096 const TxId txId = tx.GetId();
1098 if (tx.IsCoinBase()) {
1099 index_in_template++;
1101 for (
const auto &o : pblock->
vtx[0]->vout) {
1102 coinbasevalue += o.nValue;
1112 entry.
pushKVEnd(
"hash", tx.GetHash().GetHex());
1115 pblocktemplate->entries[index_in_template].fees /
SATOSHI);
1117 pblocktemplate->entries[index_in_template].sigChecks;
1121 index_in_template++;
1124 const bool simplifyGbt = argsman.
GetBoolArg(
"-simplegbt",
false);
1131 const auto minerFundWhitelist =
1133 int64_t minerFundMinValue = 0;
1142 std::vector<CScript> stakingRewardsPayoutScripts;
1143 int64_t stakingRewardsAmount =
1145 if (
node.avalanche &&
1147 if (!
node.avalanche->getStakingRewardWinners(
1149 stakingRewardsPayoutScripts)) {
1150 stakingRewardsPayoutScripts.clear();
1156 if (!minerFundWhitelist.empty()) {
1157 minerFund.
pushKV(
"script",
1159 *minerFundWhitelist.begin())));
1160 minerFund.
pushKV(
"amount", minerFundMinValue);
1162 result.
pushKV(
"minerfund", minerFund);
1164 if (!stakingRewardsPayoutScripts.empty()) {
1167 "script",
HexStr(stakingRewardsPayoutScripts[0]));
1168 stakingRewards.
pushKV(
"amount", stakingRewardsAmount);
1169 result.
pushKV(
"stakingrewards", stakingRewards);
1174 for (
const auto &fundDestination : minerFundWhitelist) {
1179 minerFund.
pushKV(
"addresses", minerFundList);
1180 minerFund.
pushKV(
"minimumvalue", minerFundMinValue);
1182 coinbasetxn.
pushKV(
"minerfund", minerFund);
1184 if (!stakingRewardsPayoutScripts.empty()) {
1188 stakingRewardsPayoutScriptObj,
1190 stakingRewards.
pushKV(
"payoutscript",
1191 stakingRewardsPayoutScriptObj);
1192 stakingRewards.
pushKV(
"minimumvalue", stakingRewardsAmount);
1194 coinbasetxn.
pushKV(
"stakingrewards", stakingRewards);
1206 result.
pushKV(
"capabilities", aCaps);
1211 result.
pushKV(
"transactions", transactions);
1212 result.
pushKV(
"coinbaseaux", aux);
1213 result.
pushKV(
"coinbasetxn", coinbasetxn);
1214 result.
pushKV(
"coinbasevalue", int64_t(coinbasevalue /
SATOSHI));
1215 result.
pushKV(
"longpollid",
1217 ToString(nTransactionsUpdatedLast));
1221 result.
pushKV(
"mutable", aMutable);
1222 result.
pushKV(
"noncerange",
"00000000ffffffff");
1223 const uint64_t sigCheckLimit =
1225 result.
pushKV(
"sigchecklimit", sigCheckLimit);
1233 uint32_t nextTarget = pblock->
nBits;
1239 pindexPrev, adjustedTime, consensusParams);
1242 nextTarget = *rttTarget;
1247 std::vector<int64_t> prevHeaderReceivedTime(18, 0);
1248 for (
size_t i = 1; i < 18; i++) {
1249 if (!previousIndex) {
1253 prevHeaderReceivedTime[i] =
1255 previousIndex = previousIndex->
pprev;
1263 for (
size_t i : {2, 5, 11, 17}) {
1264 prevHeaderTimes.
push_back(prevHeaderReceivedTime[i]);
1267 rtt.
pushKV(
"prevheadertime", prevHeaderTimes);
1269 rtt.
pushKV(
"nodetime", adjustedTime);
1272 result.
pushKV(
"rtt", rtt);
1305 "Attempts to submit new block to network.\n"
1306 "See https://en.bitcoin.it/wiki/BIP_0022 for full specification.\n",
1309 "the hex-encoded block data to submit"},
1311 "dummy value, for compatibility with BIP22. This value is "
1318 "According to BIP22"},
1324 std::shared_ptr<CBlock> blockptr = std::make_shared<CBlock>();
1325 CBlock &block = *blockptr;
1326 if (!
DecodeHexBlk(block, request.params[0].get_str())) {
1328 "Block decode failed");
1331 if (block.
vtx.empty() || !block.
vtx[0]->IsCoinBase()) {
1333 "Block does not start with a coinbase");
1347 if (pindex->nStatus.isInvalid()) {
1348 return "duplicate-invalid";
1355 std::make_shared<submitblock_StateCatcher>(block.
GetHash());
1361 node.avalanche.get());
1363 if (!new_block && accepted) {
1368 return "inconclusive";
1382 "Decode the given hexdata as a header and submit it as a candidate "
1383 "chain tip if valid."
1384 "\nThrows when the header is invalid.\n",
1387 "the hex-encoded block header data"},
1397 "Block header decode failed");
1404 "Must submit previous header (" +
1427 "Estimates the approximate fee per kilobyte needed for a "
1461 for (
const auto &c : commands) {
static bool IsAxionEnabled(const Consensus::Params ¶ms, int32_t nHeight)
static constexpr Amount SATOSHI
double GetDifficulty(const CBlockIndex *blockindex)
Calculate the difficulty for a given block index.
@ SCRIPTS
Scripts & signatures ok.
const CChainParams & Params()
Return the currently selected parameters.
#define CHECK_NONFATAL(condition)
Identity function.
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
std::vector< CTransactionRef > vtx
The block chain is a tree shaped structure starting with the genesis block at the root,...
bool IsValid(enum BlockValidity nUpTo=BlockValidity::TRANSACTIONS) 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
int64_t GetHeaderReceivedTime() const
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
int64_t GetBlockTime() const
int64_t GetMedianTimePast() const
BlockHash GetBlockHash() 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.
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
const Consensus::Params & GetConsensus() const
bool MineBlocksOnDemand() const
Whether it is possible to mine blocks on demand (no retargeting)
size_t GetNodeCount(ConnectionDirection) const
Amount GetFeePerK() const
Return the fee in satoshis for a size of 1000 bytes.
A mutable version of CTransaction.
void appendCommand(const std::string &name, const CRPCCommand *pcmd)
Appends a CRPCCommand to the dispatch table.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
CFeeRate estimateFee() const
CTransactionRef get(const TxId &txid) const
void PrioritiseTransaction(const TxId &txid, const Amount nFeeDelta)
Affect CreateNewBlock prioritisation of transactions.
unsigned long size() const
unsigned int GetTransactionsUpdated() const
Implement this to subscribe to events generated in validation.
Chainstate stores and provides an API to update our local knowledge of the current best chain.
CChain m_chain
The current chain of blockheaders we consult and build on.
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
SnapshotCompletionResult MaybeCompleteSnapshotValidation(std::function< void(bilingual_str)> shutdown_fnc=[](bilingual_str msg) { AbortNode(msg.original, msg);}) EXCLUSIVE_LOCKS_REQUIRED(const CBlockIndex *GetSnapshotBaseBlock() const EXCLUSIVE_LOCKS_REQUIRED(Chainstate ActiveChainstate)() const
Once the background validation chainstate has reached the height which is the base of the UTXO snapsh...
const Config & GetConfig() const
bool IsInitialBlockDownload() const
Check whether we are doing an initial block download (synchronizing from disk or network)
bool ProcessNewBlock(const std::shared_ptr< const CBlock > &block, bool force_processing, bool min_pow_checked, bool *new_block, avalanche::Processor *const avalanche=nullptr) LOCKS_EXCLUDED(cs_main)
Process an incoming block.
bool ProcessNewBlockHeaders(const std::vector< CBlockHeader > &block, bool min_pow_checked, BlockValidationState &state, const CBlockIndex **ppindex=nullptr, const std::optional< CCheckpointData > &test_checkpoints=std::nullopt) LOCKS_EXCLUDED(cs_main)
Process incoming block headers.
const Consensus::Params & GetConsensus() const
CChain & ActiveChain() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
node::BlockManager m_blockman
A single BlockManager instance is shared across each constructed chainstate to avoid duplicating bloc...
std::string ToString() const
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 pushKVEnd(std::string key, UniValue val)
void pushKV(std::string key, UniValue val)
std::string GetRejectReason() const
std::string ToString() const
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
Generate a new block, without valid proof-of-work.
CBlockIndex * LookupBlockIndex(const BlockHash &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
void BlockChecked(const CBlock &block, const BlockValidationState &stateIn) override
Notifies listeners of a block validation result.
submitblock_StateCatcher(const uint256 &hashIn)
BlockValidationState state
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
static const uint64_t DEFAULT_MAX_BLOCK_SIZE
Default setting for maximum allowed size for a block, in bytes.
uint64_t GetMaxBlockSigChecksCount(uint64_t maxBlockSize)
Compute the maximum number of sigchecks that can be contained in a block given the MAXIMUM block size...
void ScriptPubKeyToUniv(const CScript &scriptPubKey, UniValue &out, bool fIncludeHex)
bool DecodeHexTx(CMutableTransaction &tx, const std::string &strHexTx)
bool DecodeHexBlk(CBlock &, const std::string &strHexBlk)
bool ParseHashStr(const std::string &strHex, uint256 &result)
Parse a hex string into 256 bits.
bool DecodeHexBlockHeader(CBlockHeader &, const std::string &hex_header)
std::string EncodeHexTx(const CTransaction &tx, const int serializeFlags=0)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
std::string EncodeDestination(const CTxDestination &dest, const Config &config)
CTxDestination DecodeDestination(const std::string &addr, const CChainParams ¶ms)
bool error(const char *fmt, const Args &...args)
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
Compute the Merkle root of the transactions in a block.
std::unordered_set< CTxDestination, TxDestinationHasher > GetMinerFundWhitelist(const Consensus::Params ¶ms)
Amount GetMinerFundAmount(const Consensus::Params ¶ms, const Amount &coinbaseValue, const CBlockIndex *pprev)
static RPCHelpMan estimatefee()
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 RPCHelpMan generateblock()
static RPCHelpMan generatetodescriptor()
static bool getScriptFromDescriptor(const std::string &descriptor, CScript &script, std::string &error)
static UniValue BIP22ValidationResult(const Config &config, const BlockValidationState &state)
static RPCHelpMan getnetworkhashps()
static RPCHelpMan submitblock()
static RPCHelpMan getblocktemplate()
static RPCHelpMan generate()
static RPCHelpMan submitheader()
static RPCHelpMan prioritisetransaction()
static bool GenerateBlock(ChainstateManager &chainman, avalanche::Processor *const avalanche, CBlock &block, uint64_t &max_tries, BlockHash &block_hash)
static UniValue generateBlocks(ChainstateManager &chainman, const CTxMemPool &mempool, avalanche::Processor *const avalanche, const CScript &coinbase_script, int nGenerate, uint64_t nMaxTries)
static RPCHelpMan getmininginfo()
static RPCHelpMan generatetoaddress()
void RegisterMiningRPCCommands(CRPCTable &t)
static const uint64_t DEFAULT_MAX_TRIES
Default max iterations to try in RPC generatetodescriptor, generatetoaddress, and generateblock.
int64_t UpdateTime(CBlockHeader *pblock, const CChainParams &chainParams, const CBlockIndex *pindexPrev, int64_t adjustedTime)
bool CheckProofOfWork(const BlockHash &hash, uint32_t nBits, const Consensus::Params ¶ms)
Check whether a block hash satisfies the proof-of-work requirement specified by nBits.
static CTransactionRef MakeTransactionRef()
UniValue JSONRPCError(int code, const std::string &message)
@ RPC_OUT_OF_MEMORY
Ran out of memory during operation.
@ RPC_MISC_ERROR
General application defined errors std::exception thrown in command handling.
@ RPC_TYPE_ERROR
Unexpected type was passed as parameter.
@ RPC_CLIENT_NOT_CONNECTED
P2P client errors Bitcoin is not connected.
@ 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)
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.
std::string GetAllOutputTypes()
uint256 ParseHashV(const UniValue &v, std::string strName)
Utilities: convert hex-encoded values (throws error if not hex).
std::optional< uint32_t > GetNextRTTWorkRequired(const CBlockIndex *pprev, int64_t now, const Consensus::Params &consensusParams)
Compute the real time block hash target given the previous block parameters.
bool isRTTEnabled(const Consensus::Params ¶ms, const CBlockIndex *pprev)
Whether the RTT feature is enabled.
bool IsRPCRunning()
Query whether RPC is running.
ChainstateManager & EnsureAnyChainman(const std::any &context)
NodeContext & EnsureAnyNodeContext(const std::any &context)
CTxMemPool & EnsureMemPool(const NodeContext &node)
ChainstateManager & EnsureChainman(const NodeContext &node)
CTxMemPool & EnsureAnyMemPool(const std::any &context)
ArgsManager & EnsureArgsman(const NodeContext &node)
CConnman & EnsureConnman(const NodeContext &node)
bool ShutdownRequested()
Returns true if a shutdown is requested, false otherwise.
bool IsStakingRewardsActivated(const Consensus::Params ¶ms, const CBlockIndex *pprev)
Amount GetStakingRewardsAmount(const Amount &coinbaseValue)
bool IsValidDestination(const CTxDestination &dest)
Check whether a CTxDestination is a CNoDestination.
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PKHash, ScriptHash > CTxDestination
A txout script template with a specific destination.
std::string ToString(const T &t)
Locale-independent version of std::to_string.
static constexpr Amount zero() noexcept
A BlockHash is a unqiue identifier for a block.
Parameters that influence chain consensus.
int64_t DifficultyAdjustmentInterval() const
int64_t nPowTargetSpacing
bool fPowAllowMinDifficultyBlocks
@ STR_HEX
Special type that is a STR with only hex chars.
@ OMITTED
The arg is optional for one of two reasons:
std::string oneline_description
Should be empty unless it is supposed to override the auto-generated summary line.
@ ELISION
Special type to denote elision (...)
@ NUM_TIME
Special numeric to denote unix epoch time.
@ STR_HEX
Special string with only hex chars.
@ STR_AMOUNT
Special string to represent a floating point amount.
A TxId is the identifier of a transaction.
NodeContext struct containing references to chain state and connection state.
#define WAIT_LOCK(cs, name)
#define ENTER_CRITICAL_SECTION(cs)
#define LEAVE_CRITICAL_SECTION(cs)
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
NodeClock::time_point GetAdjustedTime()
const UniValue NullUniValue
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
int64_t atoi64(const std::string &str)
GlobalMutex g_best_block_mutex
std::condition_variable g_best_block_cv
const CBlockIndex * g_best_block
Used to notify getblocktemplate RPC of new tips.
bool ContextualCheckTransactionForCurrentBlock(const CBlockIndex &active_chain_tip, const Consensus::Params ¶ms, const CTransaction &tx, TxValidationState &state) EXCLUSIVE_LOCKS_REQUIRED(bool TestBlockValidity(BlockValidationState &state, const CChainParams ¶ms, Chainstate &chainstate, const CBlock &block, CBlockIndex *pindexPrev, const std::function< NodeClock::time_point()> &adjusted_time_callback, BlockValidationOptions validationOptions) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
This is a variant of ContextualCheckTransaction which computes the contextual check for a transaction...
void UnregisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Unregister subscriber.
void SyncWithValidationInterfaceQueue()
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
void RegisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Register subscriber.
bilingual_str GetWarnings(bool verbose)
Format a string that describes several potential problems detected by the core.