10#include <chainparams.h>
45#include <condition_variable>
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));
115 strprintf(
"Target block height %d after current tip %d", height,
155 if (blockindex->
pprev) {
156 result.
pushKV(
"previousblockhash",
160 result.
pushKV(
"nextblockhash",
pnext->GetBlockHash().GetHex());
178 for (
size_t i = 0; i < block.
vtx.size(); ++i) {
190 txs.push_back(tx->GetId().GetHex());
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",
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),
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),
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")},
514 "Returns hash of block in best-block-chain at height provided.\n",
528 int nHeight = request.params[0].getInt<
int>();
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\"")},
605 if (!request.params[1].isNull()) {
606 fVerbose = request.params[1].get_bool();
643 "Block not available (pruned data)");
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;
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.");
848 "Negative block height.");
861 "Could not find block with at least the "
862 "specified timestamp.");
869 if (
chainHeight < config.GetChainParams().PruneAfterHeight()) {
871 "Blockchain is too short for pruning.");
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");
895 return CoinStatsHashType::HASH_SERIALIZED;
897 return CoinStatsHashType::MUHASH;
899 return CoinStatsHashType::NONE;
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
1009 request.params[2].isNull() || request.params[2].get_bool();
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",
1060 const std::optional<CCoinsStats>
maybe_stats = GetUTXOStats(
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) {
1089 node.rpc_interruption_point,
1093 "Unable to read UTXO set");
1107 "new_outputs_ex_coinbase",
1109 prev_stats.total_new_outputs_ex_coinbase_amount);
1118 prev_stats.total_unspendables_genesis_block);
1126 "unclaimed_rewards",
1128 prev_stats.total_unspendables_unclaimed_rewards);
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>();
1204 if (!request.params[2].isNull()) {
1205 fMempool = request.params[2].get_bool();
1216 if (!
view.GetCoin(out, coin) || mempool.
isSpent(out)) {
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>()};
1272 : request.params[1].getInt<
int>()};
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();
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",
1378 obj.pushKV(
"prune_target_size",
1394 if (
a->nHeight !=
b->nHeight) {
1395 return (
a->nHeight >
b->nHeight);
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;
1458 std::set<const CBlockIndex *>
setPrevs;
1467 for (std::set<const CBlockIndex *>::iterator it =
1482 obj.pushKV(
"height", block->nHeight);
1483 obj.pushKV(
"hash", block->phashBlock->GetHex());
1486 block->nHeight -
active_chain.FindFork(block)->nHeight;
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"},
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"},
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()) {
1864 blockcount = request.params[0].getInt<
int>();
1869 "Invalid block count: "
1870 "should be between 0 and "
1871 "the block's height - 1");
1885 ret.pushKV(
"window_final_block_hash",
1887 ret.pushKV(
"window_final_block_height", pindex->
nHeight);
1902template <
typename T>
1904 size_t size =
scores.size();
1910 if (size % 2 == 0) {
1920template <
typename T,
typename Tk,
typename... Args>
1922 const Args &...args) {
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()) {
2034 const bool do_all = stats.size() == 0;
2036 do_all || stats.count(
"mediantxsize") != 0;
2039 do_all || stats.count(
"medianfeerate") != 0;
2042 SetHasKeys(stats,
"utxo_size_inc",
"totalfee",
"avgfee",
2043 "avgfeerate",
"minfee",
"maxfee",
"minfeerate",
2049 SetHasKeys(stats,
"total_size",
"avgtxsize",
"mintxsize",
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) {
2082 if (tx->IsCoinBase()) {
2087 inputs += tx->vin.size();
2134 block.
vtx.size() > 1
2141 (block.
vtx.size() > 1)
2144 ret_all.pushKV(
"blockhash", pindex.GetBlockHash().GetHex());
2146 ret_all.pushKV(
"ins", inputs);
2151 ret_all.pushKV(
"medianfeerate",
2153 ret_all.pushKV(
"mediantime", pindex.GetMedianTimePast());
2154 ret_all.pushKV(
"mediantxsize",
2163 ret_all.pushKV(
"outs", outputs);
2166 ret_all.pushKV(
"time", pindex.GetBlockTime());
2171 ret_all.pushKV(
"utxo_increase", outputs - inputs);
2179 for (
const std::string &
stat : stats) {
2198 const std::set<CScript> &
needles,
2203 while (
cursor->Valid()) {
2209 if (++
count % 8192 == 0) {
2216 if (
count % 256 == 0) {
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");
2416 request.params[1].get_array().getValues()) {
2420 for (
CScript &script : scripts) {
2432 std::map<COutPoint, Coin> coins;
2436 std::unique_ptr<CCoinsViewCursor> pcursor;
2454 result.
pushKV(
"bestblock",
tip->GetBlockHash().GetHex());
2456 for (
const auto &it : coins) {
2458 const Coin &coin = it.second;
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\"")},
2515 if (!request.params[1].isNull()) {
2522 "Unknown filtertype");
2528 "Index is not enabled for filtertype " +
2547 bool index_ready = index->BlockUntilSyncedToCurrentChain();
2554 std::string
errmsg =
"Filter not found.";
2558 errmsg +=
" Block was not connected to active chain.";
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");
2647 std::unique_ptr<CCoinsViewCursor> pcursor;
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)",
2684 tip->nHeight,
tip->GetBlockHash().ToString(),
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)) {
2713 result.
pushKV(
"base_hash",
tip->GetBlockHash().ToString());
2714 result.
pushKV(
"base_height",
tip->nHeight);
2759 for (
const auto &
c : commands) {
2760 t.appendCommand(
c.name, &
c);
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 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,...
CBlockIndex * pprev
pointer to the index of the predecessor of this block
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
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
Undo information for a CBlock.
An in-memory indexed chain of blocks.
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.
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.
Double ended buffer combining vector and stream-like interfaces.
An outpoint - a combination of a transaction hash and an index n into its vout.
const TxId & GetTxId() const
Serialized script, used inside transaction inputs and outputs.
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.
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.
const std::string & get_str() const
const UniValue & get_array() const
void pushKV(std::string key, UniValue val)
std::string GetRejectReason() 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...
static constexpr auto PRUNE_TARGET_MANUAL
CBlockIndex * LookupBlockIndex(const BlockHash &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
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
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
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.