10#include <chainparams.h>
45#include <condition_variable>
73 int nShift = (blockindex->
nBits >> 24) & 0xff;
74 double dDiff = double(0x0000ffff) / double(blockindex->
nBits & 0x00ffffff);
92 if (next && next->
pprev == blockindex) {
96 return blockindex == tip ? 1 : -1;
105 const int height{param.
getInt<
int>()};
109 strprintf(
"Target block height %d is negative", height));
111 const int current_tip{active_chain.
Height()};
112 if (height > current_tip) {
115 strprintf(
"Target block height %d after current tip %d", height,
119 return active_chain[height];
142 result.
pushKV(
"confirmations", confirmations);
153 result.
pushKV(
"nTx", uint64_t(blockindex->
nTx));
155 if (blockindex->
pprev) {
156 result.
pushKV(
"previousblockhash",
174 const bool is_not_pruned{
176 const bool have_undo{is_not_pruned &&
178 for (
size_t i = 0; i < block.
vtx.size(); ++i) {
182 (have_undo && i) ? &blockUndo.
vtxundo.at(i - 1) :
nullptr;
201 "Returns the height of the most-work fully-validated chain.\n"
202 "The genesis block has height 0.\n",
219 "Returns the hash of the best (tip) block in the "
220 "most-work fully-validated chain.\n",
238 latestblock.height = pindex->
nHeight;
246 "Waits for a specific new block and returns useful info about it.\n"
247 "\nReturns the current block on timeout or exit.\n",
250 "Time in milliseconds to wait for a response. 0 indicates no "
265 if (!request.params[0].isNull()) {
266 timeout = request.params[0].
getInt<
int>();
275 lock, std::chrono::milliseconds(timeout),
277 return latestblock.height != block.
height ||
278 latestblock.hash != block.
hash ||
285 return latestblock.height != block.
height ||
286 latestblock.hash != block.
hash ||
303 "Waits for a specific new block and returns useful info about it.\n"
304 "\nReturns the current block on timeout or exit.\n",
307 "Block hash to wait for."},
309 "Time in milliseconds to wait for a response. 0 indicates no "
320 "\"0000000000079f8ef3d2c688c244eb7a4570b24c9"
321 "ed7b4a8c619eb02596f8862\" 1000") +
323 "\"0000000000079f8ef3d2c688c244eb7a4570b24c9"
324 "ed7b4a8c619eb02596f8862\", 1000")},
331 if (!request.params[1].isNull()) {
332 timeout = request.params[1].getInt<
int>();
340 lock, std::chrono::milliseconds(timeout),
364 "waitforblockheight",
365 "Waits for (at least) block height and returns the height and "
366 "hash\nof the current tip.\n"
367 "\nReturns the current block on timeout or exit.\n",
370 "Block height to wait for."},
372 "Time in milliseconds to wait for a response. 0 indicates no "
388 int height = request.params[0].
getInt<
int>();
390 if (!request.params[1].isNull()) {
391 timeout = request.params[1].getInt<
int>();
399 lock, std::chrono::milliseconds(timeout),
401 return latestblock.height >= height ||
408 return latestblock.height >= height ||
424 "syncwithvalidationinterfacequeue",
425 "Waits for the validation interface queue to catch up on everything "
426 "that was there when we entered this function.\n",
442 "Returns the proof-of-work difficulty as a multiple of the minimum "
446 "the proof-of-work difficulty as a multiple of the minimum "
462 "Attempt to fetch block from a given peer.\n"
463 "\nWe must have the header for this block, e.g. using submitheader.\n"
464 "Subsequent calls for the same block may cause the response from the "
465 "previous peer to be ignored.\n"
466 "\nReturns an empty JSON object if the request was successfully "
470 "The block hash to try to fetch"},
472 "The peer to fetch it from (see getpeerinfo for peer IDs)"},
476 "\"00000000c937983704a73af28acdec37b049d214a"
477 "dbda81d7e2a3dd146f6ed09\" 0") +
479 "\"00000000c937983704a73af28acdec37b049d214a"
480 "dbda81d7e2a3dd146f6ed09\" 0")},
489 const NodeId peer_id{request.params[1].getInt<int64_t>()};
503 if (
const auto err{peerman.
FetchBlock(config, peer_id, *index)}) {
514 "Returns hash of block in best-block-chain at height provided.\n",
528 int nHeight = request.params[0].getInt<
int>();
529 if (nHeight < 0 || nHeight > active_chain.
Height()) {
531 "Block height out of range");
543 "If verbose is false, returns a string that is serialized, hex-encoded "
544 "data for blockheader 'hash'.\n"
545 "If verbose is true, returns an Object with information about "
546 "blockheader <hash>.\n",
551 "true for a json object, false for the hex-encoded data"},
555 "for verbose = true",
561 "the block hash (same as provided)"},
563 "The number of confirmations, or -1 if the block is not "
564 "on the main chain"},
566 "The block height or index"},
569 "The block version formatted in hexadecimal"},
579 "Expected number of hashes required to produce the "
582 "The number of transactions in the block"},
585 "The hash of the previous block (if available)"},
588 "The hash of the next block (if available)"},
591 "A string that is serialized, hex-encoded data for block "
595 "\"00000000c937983704a73af28acdec37b049d214a"
596 "dbda81d7e2a3dd146f6ed09\"") +
598 "\"00000000c937983704a73af28acdec37b049d214a"
599 "dbda81d7e2a3dd146f6ed09\"")},
604 bool fVerbose =
true;
605 if (!request.params[1].isNull()) {
606 fVerbose = request.params[1].get_bool();
627 std::string strHex =
HexStr(ssBlock);
641 if (blockman.IsBlockPruned(pblockindex)) {
643 "Block not available (pruned data)");
664 if (blockman.IsBlockPruned(pblockindex)) {
666 "Undo data not available (pruned data)");
680 "If verbosity is 0 or false, returns a string that is serialized, "
681 "hex-encoded data for block 'hash'.\n"
682 "If verbosity is 1 or true, returns an Object with information about "
684 "If verbosity is 2, returns an Object with information about block "
685 "<hash> and information about each transaction.\n",
690 "0 for hex-encoded data, 1 for a json object, and 2 for json "
691 "object with transaction data",
696 "A string that is serialized, hex-encoded data for block "
705 "the block hash (same as provided)"},
707 "The number of confirmations, or -1 if the block is not "
708 "on the main chain"},
711 "The block height or index"},
714 "The block version formatted in hexadecimal"},
718 "The transaction ids",
728 "Expected number of hashes required to produce the chain "
729 "up to this block (in hex)"},
731 "The number of transactions in the block"},
734 "The hash of the previous block (if available)"},
737 "The hash of the next block (if available)"},
745 "Same output as verbosity = 1"},
755 "The transactions in the format of the "
756 "getrawtransaction RPC. Different from "
757 "verbosity = 1 \"tx\" result"},
759 "The transaction fee in " +
761 ", omitted if block undo data is not "
768 HelpExampleCli(
"getblock",
"\"00000000c937983704a73af28acdec37b049d"
769 "214adbda81d7e2a3dd146f6ed09\"") +
770 HelpExampleRpc(
"getblock",
"\"00000000c937983704a73af28acdec37b049d"
771 "214adbda81d7e2a3dd146f6ed09\"")},
777 if (!request.params[1].isNull()) {
778 if (request.params[1].isNum()) {
779 verbosity = request.params[1].getInt<
int>();
781 verbosity = request.params[1].get_bool() ? 1 : 0;
802 if (verbosity <= 0) {
806 std::string strHex =
HexStr(ssBlock);
822 "The block height to prune up to. May be set to a discrete "
826 " to prune blocks whose block time is at "
827 "least 2 hours older than the provided timestamp."},
838 "Cannot prune blocks because node is not in prune mode.");
845 int heightParam = request.params[0].getInt<
int>();
846 if (heightParam < 0) {
848 "Negative block height.");
854 if (heightParam > 1000000000) {
861 "Could not find block with at least the "
862 "specified timestamp.");
867 unsigned int height = (
unsigned int)heightParam;
868 unsigned int chainHeight = (
unsigned int)active_chain.
Height();
869 if (chainHeight < config.GetChainParams().PruneAfterHeight()) {
871 "Blockchain is too short for pruning.");
872 }
else if (height > chainHeight) {
875 "Blockchain is shorter than the attempted prune height.");
878 "Attempt to prune blocks close to the tip. "
879 "Retaining the minimum number of blocks.\n");
886 active_chainstate.
m_blockman.GetFirstStoredBlock(block)};
888 return static_cast<uint64_t
>(last_block->nHeight);
894 if (hash_type_input ==
"hash_serialized") {
895 return CoinStatsHashType::HASH_SERIALIZED;
896 }
else if (hash_type_input ==
"muhash") {
897 return CoinStatsHashType::MUHASH;
898 }
else if (hash_type_input ==
"none") {
903 strprintf(
"%s is not a valid hash_type", hash_type_input));
910 "Returns statistics about the unspent transaction output set.\n"
911 "Note this call may take some time if you are not using "
915 "Which UTXO set hash should be calculated. Options: "
916 "'hash_serialized' (the legacy algorithm), 'muhash', 'none'."},
918 "The block hash or height of the target height (only available "
919 "with coinstatsindex).",
921 .type_str = {
"",
"string or numeric"}}},
923 "Use coinstatsindex, if available."},
931 "The current block height (index)"},
933 "The hash of the block at the tip of the chain"},
935 "The number of unspent transaction outputs"},
937 "Database-independent, meaningless metric indicating "
938 "the UTXO set size"},
941 "The serialized hash (only present if 'hash_serialized' "
942 "hash_type is chosen)"},
944 "The serialized hash (only present if 'muhash' "
945 "hash_type is chosen)"},
947 "The number of transactions with unspent outputs (not "
948 "available when coinstatsindex is used)"},
950 "The estimated size of the chainstate on disk (not "
951 "available when coinstatsindex is used)"},
955 "The total amount of coins permanently excluded from the UTXO "
956 "set (only available if coinstatsindex is used)"},
959 "Info on amounts in the block at this block height (only "
960 "available if coinstatsindex is used)",
962 "Total amount of all prevouts spent in this block"},
964 "Coinbase subsidy amount of this block"},
966 "Total amount of new outputs created by this block"},
968 "Total amount of unspendable outputs created in this block"},
971 "Detailed view of the unspendable categories",
974 "The unspendable amount of the Genesis block subsidy"},
976 "Transactions overridden by duplicates (no longer "
977 "possible with BIP30)"},
979 "Amounts sent to scripts that are unspendable (for "
980 "example OP_RETURN outputs)"},
982 "Fee rewards that miners did not claim in their "
983 "coinbase transaction"},
992 R
"("none" '"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09"')") +
998 R
"("none", "00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09")")},
1005 request.params[0].isNull()
1006 ? CoinStatsHashType::HASH_SERIALIZED
1008 bool index_requested =
1009 request.params[2].isNull() || request.params[2].get_bool();
1020 coins_view = &active_chainstate.
CoinsDB();
1025 if (!request.params[1].isNull()) {
1028 "Querying specific block heights "
1029 "requires coinstatsindex");
1032 if (hash_type == CoinStatsHashType::HASH_SERIALIZED) {
1034 "hash_serialized hash type cannot be "
1035 "queried for a specific block");
1049 if (pindex->nHeight > summary.best_block_height) {
1053 "Unable to get data because coinstatsindex is "
1054 "still syncing. Current height: %d",
1055 summary.best_block_height));
1060 const std::optional<CCoinsStats> maybe_stats =
GetUTXOStats(
1061 coins_view, *blockman, hash_type,
node.rpc_interruption_point,
1062 pindex, index_requested);
1063 if (maybe_stats.has_value()) {
1069 if (hash_type == CoinStatsHashType::HASH_SERIALIZED) {
1070 ret.
pushKV(
"hash_serialized",
1073 if (hash_type == CoinStatsHashType::MUHASH) {
1078 ret.
pushKV(
"transactions",
1082 ret.
pushKV(
"total_unspendable_amount",
1086 if (pindex->nHeight > 0) {
1087 const std::optional<CCoinsStats> maybe_prev_stats =
1089 node.rpc_interruption_point,
1090 pindex->pprev, index_requested);
1091 if (!maybe_prev_stats) {
1093 "Unable to read UTXO set");
1095 prev_stats = maybe_prev_stats.value();
1102 prev_stats.total_prevout_spent_amount);
1103 block_info.
pushKV(
"coinbase",
1105 prev_stats.total_coinbase_amount);
1107 "new_outputs_ex_coinbase",
1109 prev_stats.total_new_outputs_ex_coinbase_amount);
1110 block_info.
pushKV(
"unspendable",
1112 prev_stats.total_unspendable_amount);
1118 prev_stats.total_unspendables_genesis_block);
1121 prev_stats.total_unspendables_bip30);
1124 prev_stats.total_unspendables_scripts);
1126 "unclaimed_rewards",
1128 prev_stats.total_unspendables_unclaimed_rewards);
1129 block_info.
pushKV(
"unspendables", unspendables);
1131 ret.
pushKV(
"block_info", block_info);
1135 "Unable to read UTXO set");
1145 "Returns details about an unspent transaction output.\n",
1148 "The transaction id"},
1151 "Whether to include the mempool. Note that an unspent output that "
1152 "is spent in the mempool won't appear."},
1164 "The hash of the block at the tip of the chain"},
1166 "The number of confirmations"},
1176 "Number of required signatures"},
1178 "The type, eg pubkeyhash"},
1181 "array of eCash addresses",
1190 "\nAs a JSON-RPC call\n" +
1201 int n = request.params[1].getInt<
int>();
1202 COutPoint out(txid, n);
1203 bool fMempool =
true;
1204 if (!request.params[2].isNull()) {
1205 fMempool = request.params[2].get_bool();
1220 if (!coins_view->
GetCoin(out, coin)) {
1230 ret.
pushKV(
"confirmations", 0);
1232 ret.
pushKV(
"confirmations",
1238 ret.
pushKV(
"scriptPubKey", o);
1249 "Verifies blockchain database.\n",
1254 strprintf(
"How thorough the block verification is:\n - %s",
1258 "The number of blocks to check."},
1261 "Verification finished successfully. If false, check "
1262 "debug.log for reason."},
1267 const int check_level{request.params[0].
isNull()
1269 : request.params[0].getInt<
int>()};
1270 const int check_depth{request.params[1].isNull()
1272 : request.params[1].getInt<
int>()};
1280 active_chainstate.
CoinsTip(), check_level,
1288 "getblockchaininfo",
1289 "Returns an object containing various state info regarding blockchain "
1298 "current network name (main, test, regtest)"},
1300 "the height of the most-work fully-validated chain. The "
1301 "genesis block has height 0"},
1303 "the current number of headers we have validated"},
1305 "the hash of the currently best block"},
1312 "estimate of verification progress [0..1]"},
1314 "(debug information) estimate of whether this node is in "
1315 "Initial Block Download mode"},
1317 "total amount of work in active chain, in hexadecimal"},
1319 "the estimated size of the block and undo files on disk"},
1321 "if the blocks are subject to pruning"},
1323 "lowest-height complete block stored (only present if pruning "
1326 "whether automatic pruning is enabled (only present if "
1327 "pruning is enabled)"},
1329 "the target size used by pruning (only present if automatic "
1330 "pruning is enabled)"},
1332 "any network and blockchain warnings"},
1338 const CChainParams &chainparams = config.GetChainParams();
1346 const int height{tip.nHeight};
1350 obj.
pushKV(
"blocks", height);
1351 obj.
pushKV(
"headers", chainman.m_best_header
1352 ? chainman.m_best_header->nHeight
1354 obj.
pushKV(
"bestblockhash", tip.GetBlockHash().GetHex());
1356 obj.
pushKV(
"time", tip.GetBlockTime());
1357 obj.
pushKV(
"mediantime", tip.GetMedianTimePast());
1359 "verificationprogress",
1361 obj.
pushKV(
"initialblockdownload",
1363 obj.
pushKV(
"chainwork", tip.nChainWork.GetHex());
1364 obj.
pushKV(
"size_on_disk",
1371 chainman.
m_blockman.GetFirstStoredBlock(tip)->nHeight);
1373 const bool automatic_pruning{
1375 BlockManager::PRUNE_TARGET_MANUAL};
1376 obj.
pushKV(
"automatic_pruning", automatic_pruning);
1377 if (automatic_pruning) {
1378 obj.
pushKV(
"prune_target_size",
1405 "Return information about all known tips in the block tree, including "
1406 "the main chain as well as orphaned branches.\n",
1419 "zero for main chain, otherwise length of branch connecting "
1420 "the tip to the main chain"},
1422 "status of the chain, \"active\" for the main chain\n"
1423 "Possible values for status:\n"
1424 "1. \"invalid\" This branch contains at "
1425 "least one invalid block\n"
1426 "2. \"parked\" This branch contains at "
1427 "least one parked block\n"
1428 "3. \"headers-only\" Not all blocks for this "
1429 "branch are available, but the headers are valid\n"
1430 "4. \"valid-headers\" All blocks are available for "
1431 "this branch, but they were never fully validated\n"
1432 "5. \"valid-fork\" This branch is not part of "
1433 "the active chain, but is fully validated\n"
1434 "6. \"active\" This is the tip of the "
1435 "active main chain, which is certainly valid"},
1456 std::set<const CBlockIndex *, CompareBlocksByHeight> setTips;
1457 std::set<const CBlockIndex *> setOrphans;
1458 std::set<const CBlockIndex *> setPrevs;
1460 for (
const auto &[
_, block_index] : chainman.
BlockIndex()) {
1461 if (!active_chain.
Contains(&block_index)) {
1462 setOrphans.insert(&block_index);
1463 setPrevs.insert(block_index.pprev);
1467 for (std::set<const CBlockIndex *>::iterator it =
1469 it != setOrphans.end(); ++it) {
1470 if (setPrevs.erase(*it) == 0) {
1471 setTips.insert(*it);
1476 setTips.insert(active_chain.
Tip());
1482 obj.
pushKV(
"height", block->nHeight);
1483 obj.
pushKV(
"hash", block->phashBlock->GetHex());
1485 const int branchLen =
1487 obj.
pushKV(
"branchlen", branchLen);
1490 if (active_chain.
Contains(block)) {
1493 }
else if (block->nStatus.isInvalid()) {
1496 }
else if (block->nStatus.isOnParkedChain()) {
1499 }
else if (!block->HaveTxsDownloaded()) {
1502 status =
"headers-only";
1507 status =
"valid-fork";
1512 status =
"valid-headers";
1517 obj.
pushKV(
"status", status);
1530 "Treats a block as if it were received before others with the same "
1532 "\nA later preciousblock call can override the effect of an earlier "
1534 "\nThe effects of preciousblock are not retained across restarts.\n",
1537 "the hash of the block to mark as precious"},
1560 node.avalanche.get());
1577 "Permanently marks a block as invalid, as if it violated a consensus "
1581 "the hash of the block to mark as invalid"},
1606 state,
nullptr,
node.avalanche.get());
1624 "Marks a block as parked.\n",
1627 "the hash of the block to park"},
1634 const std::string strHash = request.params[0].
get_str();
1657 active_chainstate.
ParkBlock(state, pblockindex);
1661 node.avalanche.get());
1679 "Removes invalidity status of a block, its ancestors and its"
1680 "descendants, reconsider them for activation.\n"
1681 "This can be used to undo the effects of invalidateblock.\n",
1684 "the hash of the block to reconsider"},
1709 state,
nullptr,
node.avalanche.get());
1726 "Removes parked status of a block and its descendants, reconsider "
1727 "them for activation.\n"
1728 "This can be used to undo the effects of parkblock.\n",
1731 "the hash of the block to unpark"},
1738 const std::string strHash = request.params[0].
get_str();
1754 if (!pblockindex->nStatus.isOnParkedChain()) {
1776 node.avalanche.get());
1793 "Compute statistics about the total number and rate of transactions "
1797 "Size of the window in number of blocks"},
1800 "The hash of the block that ends the window."},
1807 "The timestamp for the final block in the window, "
1811 "The total number of transactions in the chain up to "
1814 "The hash of the final block in the window"},
1816 "The height of the final block in the window."},
1818 "Size of the window in number of blocks"},
1820 "The number of transactions in the window. Only "
1821 "returned if \"window_block_count\" is > 0"},
1823 "The elapsed time in the window in seconds. Only "
1824 "returned if \"window_block_count\" is > 0"},
1826 "The average rate of transactions per second in the "
1827 "window. Only returned if \"window_interval\" is > 0"},
1839 config.GetChainParams().GetConsensus().nPowTargetSpacing;
1841 if (request.params[1].isNull()) {
1854 "Block is not in main chain");
1860 if (request.params[0].isNull()) {
1862 std::max(0, std::min(blockcount, pindex->
nHeight - 1));
1864 blockcount = request.params[0].getInt<
int>();
1866 if (blockcount < 0 ||
1867 (blockcount > 0 && blockcount >= pindex->
nHeight)) {
1869 "Invalid block count: "
1870 "should be between 0 and "
1871 "the block's height - 1");
1878 past_block.GetMedianTimePast()};
1885 ret.
pushKV(
"window_final_block_hash",
1888 ret.
pushKV(
"window_block_count", blockcount);
1889 if (blockcount > 0) {
1890 ret.
pushKV(
"window_tx_count", nTxDiff);
1891 ret.
pushKV(
"window_interval", nTimeDiff);
1892 if (nTimeDiff > 0) {
1893 ret.
pushKV(
"txrate",
double(nTxDiff) / nTimeDiff);
1902template <
typename T>
1904 size_t size = scores.size();
1909 std::sort(scores.begin(), scores.end());
1910 if (size % 2 == 0) {
1911 return (scores[size / 2 - 1] + scores[size / 2]) / 2;
1913 return scores[size / 2];
1917template <
typename T>
static inline bool SetHasKeys(
const std::set<T> &set) {
1920template <
typename T,
typename Tk,
typename... Args>
1921static inline bool SetHasKeys(
const std::set<T> &set,
const Tk &key,
1922 const Args &...args) {
1923 return (set.count(key) != 0) ||
SetHasKeys(set, args...);
1928 sizeof(COutPoint) +
sizeof(uint32_t) +
sizeof(bool);
1934 "Compute per block statistics for a given window. All amounts are "
1938 "It won't work for some heights with pruning.\n",
1941 "The block hash or height of the target block",
1943 .type_str = {
"",
"string or numeric"}}},
1947 "Values to plot (see result below)",
1950 "Selected statistic"},
1952 "Selected statistic"},
1963 "Average feerate (in satoshis per virtual byte)"},
1966 "The block hash (to check for potential reorgs)"},
1969 "The number of inputs (excluding coinbase)"},
1972 "Maximum feerate (in satoshis per virtual byte)"},
1975 "Truncated median fee in the block"},
1977 "Truncated median feerate (in " + ticker +
" per byte)"},
1979 "The block median time past"},
1981 "Truncated median transaction size"},
1984 "Minimum feerate (in satoshis per virtual byte)"},
1990 "Total amount in all outputs (excluding coinbase and thus "
1991 "reward [ie subsidy + totalfee])"},
1993 "Total size of all non-coinbase transactions"},
1996 "The number of transactions (including coinbase)"},
1998 "The increase/decrease in the number of unspent outputs"},
2000 "The increase/decrease in size for the utxo index (not "
2001 "discounting op_return and similar)"},
2006 R
"('"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09"' '["minfeerate","avgfeerate"]')") +
2008 R
"(1000 '["minfeerate","avgfeerate"]')") +
2011 R
"("00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09", ["minfeerate","avgfeerate"])") +
2013 R
"(1000, ["minfeerate","avgfeerate"])")},
2020 std::set<std::string> stats;
2021 if (!request.params[1].isNull()) {
2023 for (
unsigned int i = 0; i < stats_univalue.
size(); i++) {
2024 const std::string stat = stats_univalue[i].
get_str();
2034 const bool do_all = stats.size() == 0;
2035 const bool do_mediantxsize =
2036 do_all || stats.count(
"mediantxsize") != 0;
2037 const bool do_medianfee = do_all || stats.count(
"medianfee") != 0;
2038 const bool do_medianfeerate =
2039 do_all || stats.count(
"medianfeerate") != 0;
2040 const bool loop_inputs =
2041 do_all || do_medianfee || do_medianfeerate ||
2042 SetHasKeys(stats,
"utxo_size_inc",
"totalfee",
"avgfee",
2043 "avgfeerate",
"minfee",
"maxfee",
"minfeerate",
2045 const bool loop_outputs =
2046 do_all || loop_inputs || stats.count(
"total_out");
2047 const bool do_calculate_size =
2048 do_mediantxsize || loop_inputs ||
2049 SetHasKeys(stats,
"total_size",
"avgtxsize",
"mintxsize",
2052 const int64_t blockMaxSize = config.GetMaxBlockSize();
2060 int64_t maxtxsize = 0;
2061 int64_t mintxsize = blockMaxSize;
2062 int64_t outputs = 0;
2063 int64_t total_size = 0;
2064 int64_t utxo_size_inc = 0;
2065 std::vector<Amount> fee_array;
2066 std::vector<Amount> feerate_array;
2067 std::vector<int64_t> txsize_array;
2069 for (
size_t i = 0; i < block.
vtx.size(); ++i) {
2070 const auto &tx = block.
vtx.at(i);
2071 outputs += tx->vout.size();
2074 for (
const CTxOut &out : tx->vout) {
2075 tx_total_out += out.
nValue;
2082 if (tx->IsCoinBase()) {
2087 inputs += tx->vin.size();
2089 total_out += tx_total_out;
2091 int64_t tx_size = 0;
2092 if (do_calculate_size) {
2093 tx_size = tx->GetTotalSize();
2094 if (do_mediantxsize) {
2095 txsize_array.push_back(tx_size);
2097 maxtxsize = std::max(maxtxsize, tx_size);
2098 mintxsize = std::min(mintxsize, tx_size);
2099 total_size += tx_size;
2104 const auto &txundo = blockUndo.
vtxundo.at(i - 1);
2105 for (
const Coin &coin : txundo.vprevout) {
2108 tx_total_in += prevoutput.
nValue;
2114 Amount txfee = tx_total_in - tx_total_out;
2117 fee_array.push_back(txfee);
2119 maxfee = std::max(maxfee, txfee);
2120 minfee = std::min(minfee, txfee);
2123 Amount feerate = txfee / tx_size;
2124 if (do_medianfeerate) {
2125 feerate_array.push_back(feerate);
2127 maxfeerate = std::max(maxfeerate, feerate);
2128 minfeerate = std::min(minfeerate, feerate);
2134 block.
vtx.size() > 1
2135 ? (totalfee /
int((block.
vtx.size() - 1)))
2137 ret_all.
pushKV(
"avgfeerate", total_size > 0
2138 ? (totalfee / total_size)
2140 ret_all.
pushKV(
"avgtxsize",
2141 (block.
vtx.size() > 1)
2142 ? total_size / (block.
vtx.size() - 1)
2144 ret_all.
pushKV(
"blockhash", pindex.GetBlockHash().GetHex());
2145 ret_all.
pushKV(
"height", (int64_t)pindex.nHeight);
2146 ret_all.
pushKV(
"ins", inputs);
2147 ret_all.
pushKV(
"maxfee", maxfee);
2148 ret_all.
pushKV(
"maxfeerate", maxfeerate);
2149 ret_all.
pushKV(
"maxtxsize", maxtxsize);
2151 ret_all.
pushKV(
"medianfeerate",
2153 ret_all.
pushKV(
"mediantime", pindex.GetMedianTimePast());
2154 ret_all.
pushKV(
"mediantxsize",
2161 ret_all.
pushKV(
"mintxsize",
2162 mintxsize == blockMaxSize ? 0 : mintxsize);
2163 ret_all.
pushKV(
"outs", outputs);
2166 ret_all.
pushKV(
"time", pindex.GetBlockTime());
2167 ret_all.
pushKV(
"total_out", total_out);
2168 ret_all.
pushKV(
"total_size", total_size);
2169 ret_all.
pushKV(
"totalfee", totalfee);
2170 ret_all.
pushKV(
"txs", (int64_t)block.
vtx.size());
2171 ret_all.
pushKV(
"utxo_increase", outputs - inputs);
2172 ret_all.
pushKV(
"utxo_size_inc", utxo_size_inc);
2179 for (
const std::string &stat : stats) {
2180 const UniValue &value = ret_all[stat];
2184 strprintf(
"Invalid selected statistic %s", stat));
2195static bool FindScriptPubKey(std::atomic<int> &scan_progress,
2196 const std::atomic<bool> &should_abort,
2198 const std::set<CScript> &needles,
2199 std::map<COutPoint, Coin> &out_results,
2200 std::function<
void()> &interruption_point) {
2203 while (cursor->
Valid()) {
2209 if (++
count % 8192 == 0) {
2210 interruption_point();
2216 if (
count % 256 == 0) {
2218 const TxId &txid = key.GetTxId();
2219 uint32_t high = 0x100 * *txid.
begin() + *(txid.
begin() + 1);
2220 scan_progress = int(high * 100.0 / 65536.0 + 0.5);
2223 out_results.emplace(key, coin);
2227 scan_progress = 100;
2263 "Scans the unspent transaction output set for entries that match "
2264 "certain output descriptors.\n"
2265 "Examples of output descriptors are:\n"
2266 " addr(<address>) Outputs whose scriptPubKey "
2267 "corresponds to the specified address (does not include P2PK)\n"
2268 " raw(<hex script>) Outputs whose scriptPubKey "
2269 "equals the specified hex scripts\n"
2270 " combo(<pubkey>) P2PK and P2PKH outputs for "
2271 "the given pubkey\n"
2272 " pkh(<pubkey>) P2PKH outputs for the given "
2274 " sh(multi(<n>,<pubkey>,<pubkey>,...)) P2SH-multisig outputs for "
2275 "the given threshold and pubkeys\n"
2276 "\nIn the above, <pubkey> either refers to a fixed public key in "
2277 "hexadecimal notation, or to an xpub/xprv optionally followed by one\n"
2278 "or more path elements separated by \"/\", and optionally ending in "
2279 "\"/*\" (unhardened), or \"/*'\" or \"/*h\" (hardened) to specify all\n"
2280 "unhardened or hardened child keys.\n"
2281 "In the latter case, a range needs to be specified by below if "
2282 "different from 1000.\n"
2283 "For more information on output descriptors, see the documentation in "
2284 "the doc/descriptors.md file.\n",
2287 "The action to execute\n"
2288 " \"start\" for starting a "
2290 " \"abort\" for aborting the "
2291 "current scan (returns true when abort was successful)\n"
2293 "progress report (in %) of the current scan"},
2297 "Array of scan objects. Required for \"start\" action\n"
2298 " Every scan object is either a "
2299 "string descriptor or an object:",
2302 "An output descriptor"},
2307 "An object with output descriptor and metadata",
2310 "An output descriptor"},
2312 "The range of HD chain indexes to explore (either "
2313 "end or [begin,end])"},
2321 RPCResult{
"When action=='status' and no scan is in progress",
2324 "When action=='status' and scan is in progress",
2332 "When action=='start'",
2338 "Whether the scan was completed"},
2340 "The number of unspent transaction outputs scanned"},
2342 "The current block height (index)"},
2344 "The hash of the block at the tip of the chain"},
2354 "The transaction id"},
2359 "A specialized descriptor for the matched "
2362 "The total amount in " + ticker +
2363 " of the unspent output"},
2365 "Whether this is a coinbase output"},
2367 "Height of the unspent transaction output"},
2371 "The total amount of all found unspent outputs in " +
2379 if (request.params[0].get_str() ==
"status") {
2387 }
else if (request.params[0].get_str() ==
"abort") {
2396 }
else if (request.params[0].get_str() ==
"start") {
2400 "Scan already in progress, use action "
2401 "\"abort\" or \"status\"");
2404 if (request.params.size() < 2) {
2406 "scanobjects argument is required for "
2407 "the start action");
2410 std::set<CScript> needles;
2411 std::map<CScript, std::string> descriptors;
2420 for (CScript &script : scripts) {
2421 std::string inferred =
2423 needles.emplace(script);
2424 descriptors.emplace(std::move(script),
2425 std::move(inferred));
2431 std::vector<CTxOut> input_txos;
2432 std::map<COutPoint, Coin> coins;
2436 std::unique_ptr<CCoinsViewCursor> pcursor;
2448 bool res = FindScriptPubKey(
2450 needles, coins,
node.rpc_interruption_point);
2451 result.
pushKV(
"success", res);
2456 for (
const auto &it : coins) {
2457 const COutPoint &outpoint = it.first;
2458 const Coin &coin = it.second;
2460 input_txos.push_back(txo);
2464 unspent.
pushKV(
"txid", outpoint.GetTxId().GetHex());
2465 unspent.
pushKV(
"vout", int32_t(outpoint.GetN()));
2474 result.
pushKV(
"unspents", unspents);
2475 result.
pushKV(
"total_amount", total_in);
2487 "Retrieve a BIP 157 content filter for a particular block.\n",
2490 "The hash of the block"},
2492 "The type name of the filter"},
2499 "the hex-encoded filter data"},
2501 "the hex-encoded filter header"},
2505 "\"00000000c937983704a73af28acdec37b049d214a"
2506 "dbda81d7e2a3dd146f6ed09\" \"basic\"") +
2508 "\"00000000c937983704a73af28acdec37b049d214adbda81d7"
2509 "e2a3dd146f6ed09\", \"basic\"")},
2514 std::string filtertype_name =
"basic";
2515 if (!request.params[1].isNull()) {
2516 filtertype_name = request.params[1].get_str();
2522 "Unknown filtertype");
2528 "Index is not enabled for filtertype " +
2533 bool block_was_connected;
2543 block_was_connected =
2547 bool index_ready = index->BlockUntilSyncedToCurrentChain();
2554 std::string errmsg =
"Filter not found.";
2556 if (!block_was_connected) {
2558 errmsg +=
" Block was not connected to active chain.";
2559 }
else if (!index_ready) {
2561 errmsg +=
" Block filters are still in the process of "
2565 errmsg +=
" This error is unexpected and indicates index "
2588 "Write the serialized UTXO set to disk.\n",
2591 "path to the output file. If relative, will be prefixed by "
2599 "the number of coins written in the snapshot"},
2601 "the hash of the base of the snapshot"},
2603 "the height of the base of the snapshot"},
2605 "the absolute path that the snapshot was written to"},
2607 "the hash of the UTXO set contents"},
2609 "the number of transactions in the chain up to and "
2610 "including the base block"},
2617 args.GetDataDirNet(),
fs::u8path(request.params[0].get_str()));
2621 args.GetDataDirNet(),
2622 fs::u8path(request.params[0].get_str() +
".incomplete"));
2627 " already exists. If you are sure this "
2628 "is what you want, "
2629 "move it out of the way first");
2636 node,
node.chainman->ActiveChainstate(), afile, path, temppath);
2637 fs::rename(temppath, path);
2647 std::unique_ptr<CCoinsViewCursor> pcursor;
2648 std::optional<CCoinsStats> maybe_stats;
2670 CoinStatsHashType::HASH_SERIALIZED,
2671 node.rpc_interruption_point);
2677 std::unique_ptr<CCoinsViewCursor>(chainstate.
CoinsDB().
Cursor());
2683 strprintf(
"writing UTXO snapshot at height %s (%s) to file %s (via %s)",
2694 unsigned int iter{0};
2696 while (pcursor->Valid()) {
2697 if (iter % 5000 == 0) {
2698 node.rpc_interruption_point();
2701 if (pcursor->GetKey(key) && pcursor->GetValue(coin)) {
2712 result.
pushKV(
"coins_written", maybe_stats->coins_count);
2716 result.
pushKV(
"txoutset_hash", maybe_stats->hashSerialized.ToString());
2759 for (
const auto &c : commands) {
bool MoneyRange(const Amount nValue)
static constexpr Amount MAX_MONEY
No amount larger than this (in satoshi) is valid.
static RPCHelpMan getblock()
static int ComputeNextBlockAndDepth(const CBlockIndex *tip, const CBlockIndex *blockindex, const CBlockIndex *&next)
static RPCHelpMan getdifficulty()
static std::atomic< bool > g_scan_in_progress
static bool SetHasKeys(const std::set< T > &set)
static RPCHelpMan reconsiderblock()
static T CalculateTruncatedMedian(std::vector< T > &scores)
static RPCHelpMan invalidateblock()
static RPCHelpMan syncwithvalidationinterfacequeue()
static RPCHelpMan getchaintips()
static RPCHelpMan gettxoutsetinfo()
static RPCHelpMan getblockstats()
static CoinStatsHashType ParseHashType(const std::string &hash_type_input)
static RPCHelpMan preciousblock()
static constexpr size_t PER_UTXO_OVERHEAD
double GetDifficulty(const CBlockIndex *blockindex)
Calculate the difficulty for a given block index.
static RPCHelpMan scantxoutset()
static std::condition_variable cond_blockchange
static std::atomic< int > g_scan_progress
RAII object to prevent concurrency issue when scanning the txout set.
static CBlockUndo GetUndoChecked(BlockManager &blockman, const CBlockIndex *pblockindex)
static RPCHelpMan getblockfilter()
static RPCHelpMan getbestblockhash()
static CBlock GetBlockChecked(BlockManager &blockman, const CBlockIndex *pblockindex)
RPCHelpMan getblockchaininfo()
UniValue blockToJSON(BlockManager &blockman, const CBlock &block, const CBlockIndex *tip, const CBlockIndex *blockindex, bool txDetails)
Block description to JSON.
static RPCHelpMan getchaintxstats()
static RPCHelpMan waitforblock()
static RPCHelpMan getblockfrompeer()
static RPCHelpMan getblockhash()
void RegisterBlockchainRPCCommands(CRPCTable &t)
static RPCHelpMan verifychain()
static std::atomic< bool > g_should_abort_scan
UniValue blockheaderToJSON(const CBlockIndex *tip, const CBlockIndex *blockindex)
Block header to JSON.
static RPCHelpMan waitforblockheight()
static const CBlockIndex * ParseHashOrHeight(const UniValue ¶m, ChainstateManager &chainman)
static RPCHelpMan pruneblockchain()
static CUpdatedBlock latestblock GUARDED_BY(cs_blockchange)
static RPCHelpMan getblockheader()
UniValue CreateUTXOSnapshot(NodeContext &node, Chainstate &chainstate, AutoFile &afile, const fs::path &path, const fs::path &temppath)
Helper to create UTXO snapshots given a chainstate and a file handle.
static GlobalMutex cs_blockchange
static RPCHelpMan dumptxoutset()
Serialize the UTXO set to a file for loading elsewhere.
static RPCHelpMan getblockcount()
static RPCHelpMan waitfornewblock()
void RPCNotifyBlockChange(const CBlockIndex *pindex)
Callback for when block tip changed.
bool BlockFilterTypeByName(const std::string &name, BlockFilterType &filter_type)
Find a filter type by its human-readable name.
BlockFilterIndex * GetBlockFilterIndex(BlockFilterType filter_type)
Get a block filter index by type.
@ SCRIPTS
Scripts & signatures ok.
@ TREE
All parent headers found, difficulty matches, timestamp >= median previous, checkpoint.
const CBlockIndex * LastCommonAncestor(const CBlockIndex *pa, const CBlockIndex *pb)
Find the last common ancestor two blocks have.
static constexpr int64_t TIMESTAMP_WINDOW
Timestamp window used as a grace period by code that compares external timestamps (such as timestamps...
#define CHECK_NONFATAL(condition)
Identity function.
Non-refcounted RAII wrapper for FILE*.
Complete block filter struct as defined in BIP 157.
const std::vector< uint8_t > & GetEncodedFilter() const
BlockFilterIndex is used to store and retrieve block filters, hashes, and headers for a range of bloc...
bool LookupFilter(const CBlockIndex *block_index, BlockFilter &filter_out) const
Get a single filter by block.
bool LookupFilterHeader(const CBlockIndex *block_index, uint256 &header_out) EXCLUSIVE_LOCKS_REQUIRED(!m_cs_headers_cache)
Get a single filter header by block.
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
CBlockHeader GetBlockHeader() const
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
int64_t GetChainTxCount() const
Get the number of transaction in the chain so far.
int64_t GetBlockTime() const
int64_t GetMedianTimePast() const
unsigned int nTx
Number of transactions in this block.
int32_t nVersion
block header
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
BlockHash GetBlockHash() const
int nHeight
height of the entry in the chain. The genesis block has height 0
unsigned int nChainTx
(memory only) Number of transactions in the chain up to and including this block.
Undo information for a CBlock.
std::vector< CTxUndo > vtxundo
An in-memory indexed chain of blocks.
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
CBlockIndex * FindEarliestAtLeast(int64_t nTime, int height) const
Find the earliest block with timestamp equal or greater than the given time and height equal or great...
int Height() const
Return the maximal height in the chain.
const CBlockIndex * FindFork(const CBlockIndex *pindex) const
Find the last common block between this chain and a block index entry.
bool Contains(const CBlockIndex *pindex) const
Efficiently check whether a block is present in this chain.
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
std::string NetworkIDString() const
Return the BIP70 network string (main, test or regtest)
const ChainTxData & TxData() const
CCoinsView that adds a memory cache for transactions to another CCoinsView.
BlockHash GetBestBlock() const override
Retrieve the block hash whose state this CCoinsView currently represents.
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
Cursor for iterating over CoinsView state.
virtual bool Valid() const =0
virtual bool GetKey(COutPoint &key) const =0
virtual bool GetValue(Coin &coin) const =0
CCoinsViewCursor * Cursor() const override
Get a cursor to iterate over the whole state.
Abstract view on the open txout dataset.
virtual BlockHash GetBestBlock() const
Retrieve the block hash whose state this CCoinsView currently represents.
CCoinsView that brings transactions from a mempool into view.
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override
GetCoin, returning whether it exists and is not spent.
Double ended buffer combining vector and stream-like interfaces.
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 ...
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
bool isSpent(const COutPoint &outpoint) const
An output of a transaction.
Restore the UTXO in a Coin at a given COutPoint.
RAII wrapper for VerifyDB: Verify consistency of the block and coin databases.
VerifyDBResult VerifyDB(Chainstate &chainstate, CCoinsView &coinsview, int nCheckLevel, int nCheckDepth) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Chainstate stores and provides an API to update our local knowledge of the current best chain.
bool IsBlockAvalancheFinalized(const CBlockIndex *pindex) const EXCLUSIVE_LOCKS_REQUIRED(!cs_avalancheFinalizedBlockIndex)
Checks if a block is finalized by avalanche voting.
CChain m_chain
The current chain of blockheaders we consult and build on.
bool IsInitialBlockDownload() const
Check whether we are doing an initial block download (synchronizing from disk or network)
CCoinsViewCache & CoinsTip() EXCLUSIVE_LOCKS_REQUIRED(
void ForceFlushStateToDisk()
Unconditionally flush all changes to disk.
void UnparkBlockAndChildren(CBlockIndex *pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Remove parked status from a block and its descendants.
CCoinsViewDB & CoinsDB() EXCLUSIVE_LOCKS_REQUIRED(
node::BlockManager & m_blockman
Reference to a BlockManager instance which itself is shared across all Chainstate instances.
bool ActivateBestChain(BlockValidationState &state, std::shared_ptr< const CBlock > pblock=nullptr, avalanche::Processor *const avalanche=nullptr, bool skip_checkblockindex=false) EXCLUSIVE_LOCKS_REQUIRED(!m_chainstate_mutex
Find the best known block, and make it the tip of the block chain.
void ClearAvalancheFinalizedBlock() EXCLUSIVE_LOCKS_REQUIRED(!cs_avalancheFinalizedBlockIndex)
Clear avalanche finalization.
bool ParkBlock(BlockValidationState &state, CBlockIndex *pindex) EXCLUSIVE_LOCKS_REQUIRED(!m_chainstate_mutex
Park a block.
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
node::BlockMap & BlockIndex() EXCLUSIVE_LOCKS_REQUIRED(
kernel::Notifications & GetNotifications() const
CBlockIndex * ActiveTip() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
SnapshotCompletionResult MaybeCompleteSnapshotValidation(std::function< void(bilingual_str)> shutdown_fnc=[](bilingual_str msg) { AbortNode(msg.original, msg);}) EXCLUSIVE_LOCKS_REQUIRED(Chainstate & ActiveChainstate() const
Once the background validation chainstate has reached the height which is the base of the UTXO snapsh...
int ActiveHeight() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
const CChainParams & GetParams() const
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...
uint32_t GetHeight() const
Different type to mark Mutex at global scope.
virtual std::optional< std::string > FetchBlock(const Config &config, NodeId peer_id, const CBlockIndex &block_index)=0
Attempt to manually fetch block from a given peer.
void push_back(UniValue val)
const std::string & get_str() const
const std::vector< UniValue > & getValues() const
const UniValue & get_array() const
void pushKV(std::string key, UniValue val)
std::string GetRejectReason() const
std::string ToString() const
std::string ToString() const
std::string GetHex() const
std::string GetHex() const
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
std::string u8string() const
Maintains a tree of blocks (stored in m_block_index) which is consulted to determine where the most-w...
bool ReadBlockFromDisk(CBlock &block, const FlatFilePos &pos) const
Functions for disk access for blocks.
CBlockIndex * LookupBlockIndex(const BlockHash &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
bool UndoReadFromDisk(CBlockUndo &blockundo, const CBlockIndex &index) const
uint64_t GetPruneTarget() const
Attempt to stay below this number of bytes of block files.
uint64_t CalculateCurrentUsage()
Calculate the amount of disk space the block & undo files currently use.
bool IsPruneMode() const
Whether running in -prune mode.
std::unique_ptr< CoinStatsIndex > g_coin_stats_index
The global UTXO set hash object.
void TxToUniv(const CTransaction &tx, const BlockHash &hashBlock, UniValue &entry, bool include_hex=true, int serialize_flags=0, const CTxUndo *txundo=nullptr)
void ScriptPubKeyToUniv(const CScript &scriptPubKey, UniValue &out, bool fIncludeHex)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
std::unique_ptr< Descriptor > InferDescriptor(const CScript &script, const SigningProvider &provider)
Find a descriptor for the specified script, using information from provider where possible.
#define LogPrint(category,...)
static path u8path(const std::string &utf8_str)
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to byte string.
FILE * fopen(const fs::path &p, const char *mode)
fs::path AbsPathJoin(const fs::path &base, const fs::path &path)
Helper function for joining two paths.
std::optional< kernel::CCoinsStats > GetUTXOStats(CCoinsView *view, BlockManager &blockman, kernel::CoinStatsHashType hash_type, const std::function< void()> &interruption_point, const CBlockIndex *pindex, bool index_requested)
Calculate statistics about the unspent transaction output set.
std::shared_ptr< const CTransaction > CTransactionRef
UniValue JSONRPCError(int code, const std::string &message)
@ RPC_MISC_ERROR
General application defined errors std::exception thrown in command handling.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ RPC_DATABASE_ERROR
Database error.
@ 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)
std::vector< CScript > EvalDescriptorStringOrObject(const UniValue &scanobject, FlatSigningProvider &provider)
Evaluate a descriptor given as a string, or as a {"desc":...,"range":...} object, with default range ...
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 strName)
Utilities: convert hex-encoded values (throws error if not hex).
size_t GetSerializeSize(const T &t, int nVersion=0)
bool IsRPCRunning()
Query whether RPC is running.
int RPCSerializationFlags()
Retrieves any serialization flags requested in command line argument.
ChainstateManager & EnsureAnyChainman(const std::any &context)
NodeContext & EnsureAnyNodeContext(const std::any &context)
CTxMemPool & EnsureMemPool(const NodeContext &node)
PeerManager & EnsurePeerman(const NodeContext &node)
ChainstateManager & EnsureChainman(const NodeContext &node)
ArgsManager & EnsureAnyArgsman(const std::any &context)
auto Join(const std::vector< T > &list, const BaseType &separator, UnaryOp unary_op) -> decltype(unary_op(list.at(0)))
Join a list of items.
static constexpr Amount zero() noexcept
A BlockHash is a unqiue identifier for a block.
Comparison function for sorting the getchaintips heads.
bool operator()(const CBlockIndex *a, const CBlockIndex *b) const
static const Currency & get()
@ RANGE
Special type that is a NUM or [NUM,NUM].
@ STR_HEX
Special type that is a STR with only hex chars.
std::string DefaultHint
Hint for default value.
@ 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.
Amount total_unspendables_scripts
Total cumulative amount of outputs sent to unspendable scripts (OP_RETURN for example) up to and incl...
Amount total_coinbase_amount
Total cumulative amount of coinbase outputs up to and including this block.
Amount total_unspendables_genesis_block
The unspendable coinbase amount from the genesis block.
uint64_t nTransactionOutputs
bool index_used
Signals if the coinstatsindex was used to retrieve the statistics.
Amount total_unspendables_bip30
The two unspendable coinbase outputs total amount caused by BIP30.
Amount total_prevout_spent_amount
Total cumulative amount of prevouts spent up to and including this block.
Amount total_unspendables_unclaimed_rewards
Total cumulative amount of coins lost due to unclaimed miner rewards up to and including this block.
Amount total_new_outputs_ex_coinbase_amount
Total cumulative amount of outputs created up to and including this block.
Amount total_unspendable_amount
Total cumulative amount of unspendable coins up to and including this block.
NodeContext struct containing references to chain state and connection state.
#define WAIT_LOCK(cs, name)
#define AssertLockNotHeld(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define EXCLUSIVE_LOCKS_REQUIRED(...)
#define LOG_TIME_SECONDS(end_msg)
bilingual_str _(const char *psz)
Translation function.
static const uint32_t MEMPOOL_HEIGHT
Fake height value used in Coins to signify they are only in the memory pool(since 0....
uint256 uint256S(const char *str)
uint256 from const char *.
const UniValue NullUniValue
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
Amount GetBlockSubsidy(int nHeight, const Consensus::Params &consensusParams)
double GuessVerificationProgress(const ChainTxData &data, const CBlockIndex *pindex)
Guess how far we are in the verification process at the given block index require cs_main if pindex h...
const std::vector< std::string > CHECKLEVEL_DOC
Documentation for argument 'checklevel'.
void PruneBlockFilesManual(Chainstate &active_chainstate, int nManualPruneHeight)
Prune block files up to a given height.
static constexpr int DEFAULT_CHECKLEVEL
static const unsigned int MIN_BLOCKS_TO_KEEP
Block files containing a block-height within MIN_BLOCKS_TO_KEEP of ActiveChain().Tip() will not be pr...
static const signed int DEFAULT_CHECKBLOCKS
void SyncWithValidationInterfaceQueue()
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
static const int PROTOCOL_VERSION
network protocol versioning
bilingual_str GetWarnings(bool verbose)
Format a string that describes several potential problems detected by the core.