10#include <chainparams.h>
63 const CChain &active_chain) {
66 if (height >= 0 && height < active_chain.
Height()) {
67 pb = active_chain[height];
70 if (pb ==
nullptr || !pb->
nHeight) {
88 int64_t maxTime = minTime;
89 for (
int i = 0; i < lookup; i++) {
92 minTime = std::min(time, minTime);
93 maxTime = std::max(time, maxTime);
98 if (minTime == maxTime) {
103 int64_t timeDiff = maxTime - minTime;
111 "Returns the estimated network hashes per second based on the last n "
113 "Pass in [blocks] to override # of blocks, -1 specifies since last "
114 "difficulty change.\n"
115 "Pass in [height] to estimate the network speed at the time when a "
116 "certain block was found.\n",
119 "The number of blocks, or -1 for blocks since last difficulty "
122 "To estimate at the time of the given height."},
132 self.
Arg<
int>(
"height"),
140 uint64_t &max_tries,
BlockHash &block_hash) {
146 while (max_tries > 0 &&
147 block.
nNonce < std::numeric_limits<uint32_t>::max() &&
156 if (block.
nNonce == std::numeric_limits<uint32_t>::max()) {
160 std::shared_ptr<const CBlock> shared_pblock =
161 std::make_shared<const CBlock>(block);
167 "ProcessNewBlock, block not accepted");
177 const CScript &coinbase_script,
int nGenerate,
178 uint64_t nMaxTries) {
181 std::unique_ptr<CBlockTemplate> pblocktemplate(
184 .CreateNewBlock(coinbase_script));
186 if (!pblocktemplate.get()) {
190 CBlock *pblock = &pblocktemplate->block;
198 if (!block_hash.
IsNull()) {
211 CScript &
script, std::string &error) {
214 Parse(descriptor, key_provider, error,
false);
216 if (desc->IsRange()) {
218 "Ranged descriptor not accepted. Maybe pass "
219 "through deriveaddresses first?");
223 std::vector<CScript> scripts;
224 if (!desc->Expand(0, key_provider, scripts, provider)) {
227 strprintf(
"Cannot derive script without private keys"));
234 if (scripts.size() == 1) {
249 "generatetodescriptor",
250 "Mine blocks immediately to a specified descriptor (before the RPC "
254 "How many blocks are generated immediately."},
256 "The descriptor to send the newly generated bitcoin to."},
258 "How many iterations to try."},
262 "hashes of blocks generated",
270 const int num_blocks{self.
Arg<
int>(
"num_blocks")};
271 const auto max_tries{self.
Arg<uint64_t>(
"maxtries")};
273 CScript coinbase_script;
276 coinbase_script, error)) {
285 coinbase_script, num_blocks, max_tries);
292 "has been replaced by the -generate cli option. Refer to "
293 "-help for more information.",
307 "Mine blocks immediately to a specified address before the "
308 "RPC call returns)\n",
311 "How many blocks are generated immediately."},
313 "The address to send the newly generated bitcoin to."},
315 "How many iterations to try."},
319 "hashes of blocks generated",
324 "\nGenerate 11 blocks to myaddress\n" +
326 "If you are using the " PACKAGE_NAME
" wallet, you can "
327 "get a new address to send the newly generated bitcoin to with:\n" +
331 const int num_blocks{request.params[0].
getInt<
int>()};
332 const uint64_t max_tries{request.params[2].isNull()
334 : request.params[2].getInt<int64_t>()};
337 request.params[1].get_str(), config.GetChainParams());
340 "Error: Invalid address");
350 coinbase_script, num_blocks, max_tries);
358 "Mine a block with a set of ordered transactions immediately to a "
359 "specified address or descriptor (before the RPC call returns)\n",
362 "The address or descriptor to send the newly generated bitcoin "
368 "An array of hex strings which are either txids or raw "
370 "Txids must reference transactions currently in the mempool.\n"
371 "All transactions must be valid and in valid order, otherwise "
372 "the block will be rejected.",
387 "\nGenerate a block to myaddress, with txs rawtx and "
390 R
"("myaddress" '["rawtx", "mempool_txid"]')")},
393 const auto address_or_descriptor = request.params[0].
get_str();
394 CScript coinbase_script;
397 const CChainParams &chainparams = config.GetChainParams();
401 const auto destination =
405 "Error: Invalid address or descriptor");
414 std::vector<CTransactionRef> txs;
415 const auto raw_txs_or_txids = request.params[1].get_array();
416 for (
size_t i = 0; i < raw_txs_or_txids.size(); i++) {
417 const auto str(raw_txs_or_txids[i].get_str());
422 const auto tx = mempool.
get(
TxId(hash));
426 strprintf(
"Transaction %s not in mempool.", str));
429 txs.emplace_back(tx);
436 strprintf(
"Transaction decode failed for %s", str));
446 std::unique_ptr<CBlockTemplate> blocktemplate(
448 node.avalanche.get()}
449 .CreateNewBlock(coinbase_script));
450 if (!blocktemplate) {
452 "Couldn't create new block");
454 block = blocktemplate->block;
460 block.
vtx.insert(block.
vtx.end(), txs.begin(), txs.end());
473 .withCheckMerkleRoot(
false))) {
475 strprintf(
"TestBlockValidity failed: %s",
502 "Returns a json object containing mining-related "
512 "The block size of the last assembled block (only present if "
513 "a block was ever assembled)"},
515 "The number of block transactions of the last assembled block "
516 "(only present if a block was ever assembled)"},
519 "The network hashes per second"},
522 "current network name (main, test, regtest)"},
524 "any network and blockchain warnings"},
538 if (BlockAssembler::m_last_block_size) {
539 obj.
pushKV(
"currentblocksize",
540 *BlockAssembler::m_last_block_size);
542 if (BlockAssembler::m_last_block_num_txs) {
543 obj.
pushKV(
"currentblocktx",
544 *BlockAssembler::m_last_block_num_txs);
548 obj.
pushKV(
"networkhashps",
550 obj.
pushKV(
"pooledtx", uint64_t(mempool.
size()));
551 obj.
pushKV(
"chain", config.GetChainParams().GetChainTypeString());
562 "prioritisetransaction",
563 "Accepts the transaction into mined blocks at a higher "
564 "(or lower) priority\n",
567 "The transaction id."},
569 "API-Compatibility for previous API. Must be zero or null.\n"
570 " DEPRECATED. For forward compatibility "
571 "use named arguments and omit this parameter."},
573 "The fee value (in satoshis) to add (or subtract, if negative).\n"
574 " The fee is not actually paid, only the "
575 "algorithm for selecting transactions into a block\n"
576 " considers the transaction as it would "
577 "have paid a higher (or lower) fee."},
588 const auto dummy{self.
MaybeArg<
double>(1)};
589 Amount nAmount = request.params[2].getInt<int64_t>() *
SATOSHI;
591 if (dummy && *dummy != 0) {
594 "Priority is no longer supported, dummy argument to "
595 "prioritisetransaction must be 0.");
619 if (strRejectReason.empty()) {
622 return strRejectReason;
632 "If the request parameters include a 'mode' key, that is used to "
633 "explicitly select between the default 'template' request or a "
635 "It returns data needed to construct a block to work on.\n"
636 "For full specification, see BIPs 22, 23, 9, and 145:\n"
638 "https://github.com/bitcoin/bips/blob/master/"
639 "bip-0022.mediawiki\n"
641 "https://github.com/bitcoin/bips/blob/master/"
642 "bip-0023.mediawiki\n"
644 "https://github.com/bitcoin/bips/blob/master/"
645 "bip-0009.mediawiki#getblocktemplate_changes\n"
651 "Format of the template",
655 "This must be set to \"template\", \"proposal\" (see BIP "
666 "client side supported feature, 'longpoll', "
667 "'coinbasetxn', 'coinbasevalue', 'proposal', "
668 "'serverlist', 'workid'"},
675 RPCResult{
"If the proposal was accepted with mode=='proposal'",
677 RPCResult{
"If the proposal was not accepted with mode=='proposal'",
686 "The preferred block version"},
688 "The hash of current highest block"},
691 "contents of non-coinbase transactions that should be "
692 "included in the next block",
699 "transaction data encoded in hexadecimal "
702 "transaction id encoded in little-endian "
705 "hash encoded in little-endian hexadecimal"},
711 "transactions before this one (by 1-based "
712 "index in 'transactions' list) that must "
713 "be present in the final block if this one "
717 "difference in value between transaction inputs "
718 "and outputs (in satoshis); for coinbase "
719 "transactions, this is a negative Number of the "
720 "total collected block fees (ie, not including "
721 "the block subsidy); "
722 "if key is not present, fee is unknown and "
723 "clients MUST NOT assume there isn't one"},
725 "total sigChecks, as counted for purposes of "
726 "block limits; if key is not present, sigChecks "
727 "are unknown and clients MUST NOT assume it is "
733 "data that should be included in the coinbase's scriptSig "
739 "maximum allowable input to coinbase transaction, "
740 "including the generation award and transaction fees (in "
744 "information for coinbase transaction",
748 "information related to the coinbase miner fund."
749 "This will NOT be set if -simplegbt is enabled",
754 "List of valid addresses for the miner fund "
761 "The minimum value the miner fund output must "
767 "information related to the coinbase staking reward "
768 "output, only set if the -avalanchestakingrewards "
769 "option is enabled and if the node is able to "
770 "determine a winner. This will NOT be set if "
771 "-simplegbt is enabled",
775 "The proof payout script",
778 "Decoded payout script"},
780 "Raw payout script in hex format"},
782 "The output type (e.g. " +
785 "The required signatures"},
795 "The minimum value the staking reward output "
802 "The minimum timestamp appropriate for the next block "
803 "time, expressed in " +
807 "list of ways the block template may be changed",
810 "A way the block template may be changed, e.g. "
811 "'time', 'transactions', 'prevblock'"},
814 "A range of valid nonces"},
816 "limit of sigChecks in blocks"},
821 "compressed target of next block"},
823 "The height of the next block"},
826 "The real-time target parameters. Only present after the "
827 "Nov. 15, 2024 upgrade activated and if -enablertt is set",
831 "The time the preview block headers were received, "
834 ". Contains 4 values for headers at height N-2, "
835 "N-5, N-11 and N-17.",
838 "The time the block header was received, "
843 "The previous block compressed target"},
847 "The real-time target in compact format"},
851 "information related to the coinbase miner fund."
852 "This will ONLY be set if -simplegbt is enabled",
855 "The scriptpubkey for the miner fund output in "
858 "The minimum value the miner fund output must "
864 "information related to the coinbase staking reward "
865 "output, only set if the -avalanchestakingrewards "
866 "option is enabled and if the node is able to "
867 "determine a winner. This will ONLY be set if "
868 "-simplegbt is enabled",
871 "The scriptpubkey for the staking reward "
872 "output in hex format"},
874 "The minimum value the staking reward output must "
888 const CChainParams &chainparams = config.GetChainParams();
890 std::string strMode =
"template";
892 std::set<std::string> setClientRules;
895 if (!request.params[0].isNull()) {
898 if (modeval.
isStr()) {
900 }
else if (modeval.
isNull()) {
907 if (strMode ==
"proposal") {
909 if (!dataval.
isStr()) {
912 "Missing data String key for proposal");
918 "Block decode failed");
928 if (pindex->nStatus.isInvalid()) {
929 return "duplicate-invalid";
931 return "duplicate-inconclusive";
938 return "inconclusive-not-best-prevblk";
945 .withCheckMerkleRoot(
true));
950 if (strMode !=
"template") {
957 "Bitcoin is not connected!");
963 " is in initial sync and waiting for blocks...");
966 static unsigned int nTransactionsUpdatedLast;
976 std::chrono::steady_clock::time_point checktxtime;
977 unsigned int nTransactionsUpdatedLastLP;
981 const std::string &lpstr = lpval.
get_str();
984 ParseHashV(lpstr.substr(0, 64),
"longpollid");
985 nTransactionsUpdatedLastLP =
986 LocaleIndependentAtoi<int64_t>(lpstr.substr(64));
991 nTransactionsUpdatedLastLP = nTransactionsUpdatedLast;
995 const auto initialLongpollDelay = isRegtest ? 5s : 1min;
996 const auto newTxCheckLongpollDelay = isRegtest ? 1s : 10s;
1002 std::chrono::steady_clock::now() + initialLongpollDelay;
1009 std::cv_status::timeout) {
1014 nTransactionsUpdatedLastLP) {
1017 checktxtime += newTxCheckLongpollDelay;
1046 static int64_t time_start;
1047 static std::unique_ptr<CBlockTemplate> pblocktemplate;
1048 if (pindexPrev != active_chain.
Tip() ||
1050 GetTime() - time_start > 5)) {
1053 pindexPrev =
nullptr;
1062 CScript scriptDummy = CScript() <<
OP_TRUE;
1064 &mempool,
node.avalanche.get()}
1065 .CreateNewBlock(scriptDummy);
1066 if (!pblocktemplate) {
1071 pindexPrev = pindexPrevNew;
1076 CBlock *pblock = &pblocktemplate->block;
1079 int64_t adjustedTime =
1081 UpdateTime(pblock, chainparams, pindexPrev, adjustedTime);
1091 int index_in_template = 0;
1092 for (
const auto &it : pblock->
vtx) {
1093 const CTransaction &tx = *it;
1094 const TxId txId = tx.GetId();
1096 if (tx.IsCoinBase()) {
1097 index_in_template++;
1099 for (
const auto &o : pblock->
vtx[0]->vout) {
1100 coinbasevalue += o.nValue;
1110 entry.
pushKVEnd(
"hash", tx.GetHash().GetHex());
1113 pblocktemplate->entries[index_in_template].fees /
SATOSHI);
1115 pblocktemplate->entries[index_in_template].sigChecks;
1118 transactions.
push_back(std::move(entry));
1119 index_in_template++;
1122 const bool simplifyGbt = argsman.
GetBoolArg(
"-simplegbt",
false);
1129 const auto minerFundWhitelist =
1131 int64_t minerFundMinValue = 0;
1140 std::vector<CScript> stakingRewardsPayoutScripts;
1141 int64_t stakingRewardsAmount =
1143 if (
node.avalanche &&
1145 if (!
node.avalanche->getStakingRewardWinners(
1147 stakingRewardsPayoutScripts)) {
1148 stakingRewardsPayoutScripts.clear();
1154 if (!minerFundWhitelist.empty()) {
1155 minerFund.
pushKV(
"script",
1157 *minerFundWhitelist.begin())));
1158 minerFund.
pushKV(
"amount", minerFundMinValue);
1160 result.
pushKV(
"minerfund", std::move(minerFund));
1162 if (!stakingRewardsPayoutScripts.empty()) {
1165 "script",
HexStr(stakingRewardsPayoutScripts[0]));
1166 stakingRewards.
pushKV(
"amount", stakingRewardsAmount);
1167 result.
pushKV(
"stakingrewards", std::move(stakingRewards));
1172 for (
const auto &fundDestination : minerFundWhitelist) {
1177 minerFund.
pushKV(
"addresses", std::move(minerFundList));
1178 minerFund.
pushKV(
"minimumvalue", minerFundMinValue);
1180 coinbasetxn.
pushKV(
"minerfund", std::move(minerFund));
1182 if (!stakingRewardsPayoutScripts.empty()) {
1186 stakingRewardsPayoutScriptObj,
1190 std::move(stakingRewardsPayoutScriptObj));
1191 stakingRewards.
pushKV(
"minimumvalue", stakingRewardsAmount);
1193 coinbasetxn.
pushKV(
"stakingrewards",
1194 std::move(stakingRewards));
1206 result.
pushKV(
"capabilities", std::move(aCaps));
1211 result.
pushKV(
"transactions", std::move(transactions));
1212 result.
pushKV(
"coinbaseaux", std::move(aux));
1213 result.
pushKV(
"coinbasetxn", std::move(coinbasetxn));
1214 result.
pushKV(
"coinbasevalue", int64_t(coinbasevalue /
SATOSHI));
1215 result.
pushKV(
"longpollid",
1217 ToString(nTransactionsUpdatedLast));
1221 result.
pushKV(
"mutable", std::move(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 : {1, 2, 5, 11, 17}) {
1264 prevHeaderTimes.
push_back(prevHeaderReceivedTime[i]);
1267 rtt.
pushKV(
"prevheadertime", std::move(prevHeaderTimes));
1269 rtt.
pushKV(
"nodetime", adjustedTime);
1272 result.
pushKV(
"rtt", std::move(rtt));
1304 "Attempts to submit new block to network.\n"
1305 "See https://en.bitcoin.it/wiki/BIP_0022 for full specification.\n",
1308 "the hex-encoded block data to submit"},
1310 "dummy value, for compatibility with BIP22. This value is "
1317 "According to BIP22"},
1323 std::shared_ptr<CBlock> blockptr = std::make_shared<CBlock>();
1324 CBlock &block = *blockptr;
1325 if (!
DecodeHexBlk(block, request.params[0].get_str())) {
1327 "Block decode failed");
1330 if (block.
vtx.empty() || !block.
vtx[0]->IsCoinBase()) {
1332 "Block does not start with a coinbase");
1346 if (pindex->nStatus.isInvalid()) {
1347 return "duplicate-invalid";
1354 std::make_shared<submitblock_StateCatcher>(block.
GetHash());
1360 node.avalanche.get());
1362 if (!new_block && accepted) {
1367 return "inconclusive";
1381 "Decode the given hexdata as a header and submit it as a candidate "
1382 "chain tip if valid."
1383 "\nThrows when the header is invalid.\n",
1386 "the hex-encoded block header data"},
1396 "Block header decode failed");
1403 "Must submit previous header (" +
1426 "Estimates the approximate fee per kilobyte needed for a "
1460 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() 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...
auto Arg(size_t i) const
Helper to get a required or default-valued request argument.
auto MaybeArg(size_t i) const
Helper to get an optional request argument.
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...
std::string EncodeHexTx(const CTransaction &tx)
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)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
std::string EncodeDestination(const CTxDestination &dest, const Config &config)
CTxDestination DecodeDestination(const std::string &addr, const CChainParams ¶ms)
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)
std::string ToString(const T &t)
Locale-independent version of std::to_string.
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.
static std::string ToString(const CService &ip)
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.
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
Optional argument for which the default value is omitted from help text 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
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 TestBlockValidity(BlockValidationState &state, const CChainParams ¶ms, Chainstate &chainstate, const CBlock &block, CBlockIndex *pindexPrev, const std::function< NodeClock::time_point()> &adjusted_time_callback, BlockValidationOptions validationOptions)
Check a block is completely valid from start to finish (only works on top of our current best block)
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.