6#if defined(HAVE_CONFIG_H)
7#include <config/bitcoin-config.h>
89#include <boost/signals2/signal.hpp>
92#include <chronik-cpp/chronik.h>
107#include <condition_variable>
142#define MIN_CORE_FILEDESCRIPTORS 0
144#define MIN_CORE_FILEDESCRIPTORS 150
208 if (
node.avalanche) {
211 node.avalanche->stopEventLoop();
214 node.connman->Interrupt();
226 static Mutex g_shutdown_mutex;
227 TRY_LOCK(g_shutdown_mutex, lock_shutdown);
228 if (!lock_shutdown) {
231 LogPrintf(
"%s: In progress...\n", __func__);
240 node.mempool->AddTransactionsUpdated(1);
247 for (
const auto &client :
node.chain_clients) {
258 if (
node.avalanche) {
259 node.avalanche->stopEventLoop();
268 node.connman->Stop();
275 if (
node.scheduler) {
276 node.scheduler->stop();
278 if (
node.chainman &&
node.chainman->m_load_block.joinable()) {
279 node.chainman->m_load_block.join();
285 node.peerman.reset();
288 node.avalanche.reset();
289 node.connman.reset();
291 node.addrman.reset();
293 if (
node.mempool &&
node.mempool->GetLoadTried() &&
303 if (chainstate->CanFlushToDisk()) {
304 chainstate->ForceFlushStateToDisk();
340 if (chainstate->CanFlushToDisk()) {
341 chainstate->ForceFlushStateToDisk();
342 chainstate->ResetCoinsViews();
346 node.chainman->DumpRecentHeadersTime(
node.chainman->m_options.datadir /
349 for (
const auto &client :
node.chain_clients) {
360 node.chain_clients.clear();
364 node.mempool.reset();
365 node.chainman.reset();
366 node.scheduler.reset();
370 LogPrintf(
"%s: Unable to remove PID file: File does not exist\n",
373 }
catch (
const fs::filesystem_error &e) {
374 LogPrintf(
"%s: Unable to remove PID file: %s\n", __func__,
395static BOOL WINAPI consoleCtrlHandler(DWORD dwCtrlType) {
406 sigemptyset(&sa.sa_mask);
408 sigaction(signal, &sa, NULL);
433 argsman.
AddArg(
"-help-debug",
434 "Print help message with debugging options and exit",
false,
439 const auto defaultBaseParams =
441 const auto testnetBaseParams =
443 const auto regtestBaseParams =
445 const auto defaultChainParams =
447 const auto testnetChainParams =
449 const auto regtestChainParams =
453 std::vector<std::string> hidden_args = {
458 "-automaticunparking",
459 "-replayprotectionactivationtime",
461 "-chronikallowpause",
464 "-allowselfsignedrootcertificates",
469 "-rootcertificates=<file>",
473 "-augustoactivationtime",
483#if defined(HAVE_SYSTEM)
485 "-alertnotify=<cmd>",
486 "Execute command when a relevant alert is received or we see "
487 "a really long fork (%s in cmd is replaced by message)",
491 "-assumevalid=<hex>",
493 "If this block is in the chain assume that it and its ancestors "
494 "are valid and potentially skip their script verification (0 to "
495 "verify all, default: %s, testnet: %s)",
496 defaultChainParams->GetConsensus().defaultAssumeValid.GetHex(),
497 testnetChainParams->GetConsensus().defaultAssumeValid.GetHex()),
499 argsman.
AddArg(
"-blocksdir=<dir>",
500 "Specify directory to hold blocks subdirectory for *.dat "
501 "files (default: <datadir>)",
503 argsman.
AddArg(
"-fastprune",
504 "Use smaller block files and lower minimum prune height for "
508#if defined(HAVE_SYSTEM)
509 argsman.
AddArg(
"-blocknotify=<cmd>",
510 "Execute command when the best block changes (%s in cmd is "
511 "replaced by block hash)",
514 argsman.
AddArg(
"-blockreconstructionextratxn=<n>",
515 strprintf(
"Extra transactions to keep in memory for compact "
516 "block reconstructions (default: %u)",
521 strprintf(
"Whether to reject transactions from network peers. "
522 "Disables automatic broadcast and rebroadcast of "
523 "transactions, unless the source peer has the "
524 "'forcerelay' permission. RPC transactions are"
525 " not affected. (default: %u)",
528 argsman.
AddArg(
"-coinstatsindex",
529 strprintf(
"Maintain coinstats index used by the "
530 "gettxoutsetinfo RPC (default: %u)",
535 strprintf(
"Specify path to read-only configuration file. Relative "
536 "paths will be prefixed by datadir location. (default: %s)",
539 argsman.
AddArg(
"-datadir=<dir>",
"Specify data directory",
543 strprintf(
"Maximum database write batch size in bytes (default: %u)",
549 strprintf(
"Set database cache size in MiB (%d to %d, default: %d)",
553 "-includeconf=<file>",
554 "Specify additional configuration file, relative to the -datadir path "
555 "(only useable from configuration file, not command line)",
557 argsman.
AddArg(
"-loadblock=<file>",
558 "Imports blocks from external file on startup",
560 argsman.
AddArg(
"-maxmempool=<n>",
561 strprintf(
"Keep the transaction memory pool below <n> "
562 "megabytes (default: %u)",
565 argsman.
AddArg(
"-maxorphantx=<n>",
566 strprintf(
"Keep at most <n> unconnectable transactions in "
567 "memory (default: %u)",
570 argsman.
AddArg(
"-mempoolexpiry=<n>",
571 strprintf(
"Do not keep transactions in the mempool longer "
572 "than <n> hours (default: %u)",
576 "-minimumchainwork=<hex>",
578 "Minimum work assumed to exist on a valid chain in hex "
579 "(default: %s, testnet: %s)",
580 defaultChainParams->GetConsensus().nMinimumChainWork.GetHex(),
581 testnetChainParams->GetConsensus().nMinimumChainWork.GetHex()),
586 strprintf(
"Set the number of script verification threads (%u to %d, 0 "
587 "= auto, <0 = leave that many cores free, default: %d)",
591 argsman.
AddArg(
"-persistmempool",
592 strprintf(
"Whether to save the mempool on shutdown and load "
593 "on restart (default: %u)",
597 "-persistrecentheaderstime",
599 "Whether the node stores the recent headers reception time to a "
600 "file and load it upon startup. This is intended for mining nodes "
601 "to overestimate the real time target upon restart (default: %u)",
606 strprintf(
"Specify pid file. Relative paths will be prefixed "
607 "by a net-specific datadir location. (default: %s)",
612 strprintf(
"Reduce storage requirements by enabling pruning (deleting) "
613 "of old blocks. This allows the pruneblockchain RPC to be "
614 "called to delete specific blocks, and enables automatic "
615 "pruning of old blocks if a target size in MiB is provided. "
616 "This mode is incompatible with -txindex, -coinstatsindex "
617 "and -rescan. Warning: Reverting this setting requires "
618 "re-downloading the entire blockchain. (default: 0 = disable "
619 "pruning blocks, 1 = allow manual pruning via RPC, >=%u = "
620 "automatically prune block files to stay under the specified "
621 "target size in MiB)",
625 "-reindex-chainstate",
626 "Rebuild chain state from the currently indexed blocks. When "
627 "in pruning mode or if blocks on disk might be corrupted, use "
628 "full -reindex instead.",
632 "Rebuild chain state and block index from the blk*.dat files on disk",
637 "Specify path to dynamic settings data file. Can be disabled with "
638 "-nosettings. File is written at runtime and not meant to be "
639 "edited by users (use %s instead for custom settings). Relative "
640 "paths will be prefixed by datadir location. (default: %s)",
644 argsman.
AddArg(
"-startupnotify=<cmd>",
"Execute command on startup.",
650 "Create new files with system default permissions, instead of umask "
651 "077 (only effective with disabled wallet functionality)",
654 hidden_args.emplace_back(
"-sysperms");
656 argsman.
AddArg(
"-txindex",
657 strprintf(
"Maintain a full transaction index, used by the "
658 "getrawtransaction rpc call (default: %d)",
664 strprintf(
"Enable the Chronik indexer, which can be read via a "
665 "dedicated HTTP/Protobuf interface (default: %d)",
669 "-chronikbind=<addr>[:port]",
671 "Bind the Chronik indexer to the given address to listen for "
672 "HTTP/Protobuf connections to access the index. Unlike the "
673 "JSON-RPC, it's ok to have this publicly exposed on the internet. "
674 "This option can be specified multiple times (default: %s; default "
675 "port: %u, testnet: %u, regtest: %u)",
676 Join(chronik::DEFAULT_BINDS,
", "),
677 defaultBaseParams->ChronikPort(), testnetBaseParams->ChronikPort(),
678 regtestBaseParams->ChronikPort()),
681 argsman.
AddArg(
"-chroniktokenindex",
682 "Enable token indexing in Chronik (default: 1)",
684 argsman.
AddArg(
"-chroniklokadidindex",
685 "Enable LOKAD ID indexing in Chronik (default: 1)",
687 argsman.
AddArg(
"-chronikreindex",
688 "Reindex the Chronik indexer from genesis, but leave the "
689 "other indexes untouched",
692 "-chroniktxnumcachebuckets",
694 "Tuning param of the TxNumCache, specifies how many buckets "
695 "to use on the belt. Caution against setting this too high, "
696 "it may slow down indexing. Set to 0 to disable. (default: %d)",
697 chronik::DEFAULT_TX_NUM_CACHE_BUCKETS),
700 "-chroniktxnumcachebucketsize",
702 "Tuning param of the TxNumCache, specifies the size of each bucket "
703 "on the belt. Unlike the number of buckets, this may be increased "
704 "without much danger of slowing the indexer down. The total cache "
705 "size will be `num_buckets * bucket_size * 40B`, so by default the "
706 "cache will require %dkB of memory. (default: %d)",
707 chronik::DEFAULT_TX_NUM_CACHE_BUCKETS *
708 chronik::DEFAULT_TX_NUM_CACHE_BUCKET_SIZE * 40 / 1000,
709 chronik::DEFAULT_TX_NUM_CACHE_BUCKET_SIZE),
711 argsman.
AddArg(
"-chronikperfstats",
712 "Output some performance statistics (e.g. num cache hits, "
713 "seconds spent) into a <datadir>/perf folder. (default: 0)",
716 "-chronikscripthashindex",
717 "Enable the scripthash index for the Chronik indexer (default: 0) ",
720 "-chronikelectrumbind=<addr>[:port][:t|s]",
722 "Bind the Chronik Electrum interface to the given "
723 "address:port:protocol. If not set, the Electrum interface will "
724 "not start. This option can be specified multiple times. The "
725 "protocol is selected by a single letter, where 't' means TCP and "
726 "'s' means TLS. If TLS is selected, the certificate chain and "
727 "private key must both be passed (see -chronikelectrumcert and "
728 "-chronikelectrumprivkey (default: disabled; default port: %u, "
729 "testnet: %u, regtest: %u; default protocol: TCP)",
730 defaultBaseParams->ChronikElectrumPort(),
731 testnetBaseParams->ChronikElectrumPort(),
732 regtestBaseParams->ChronikElectrumPort()),
736 "-chronikelectrumcert",
737 "Path to the certificate file to be used by the Chronik Electrum "
738 "server when the TLS protocol is selected. The file should contain "
739 "the whole certificate chain (typically a .pem file). If used the "
740 "-chronikelectrumprivkey must be set as well.",
744 "-chronikelectrumprivkey",
745 "Path to the private key file to be used by the Chronik Electrum "
746 "server when the TLS protocol is selected. If used the "
747 "-chronikelectrumcert must be set as well.",
752 "-blockfilterindex=<type>",
753 strprintf(
"Maintain an index of compact filters by block "
754 "(default: %s, values: %s).",
756 " If <type> is not supplied or if <type> = 1, indexes for "
757 "all known types are enabled.",
761 "Use Cash Address for destination encoding instead of base58 "
762 "(activate by default on Jan, 14)",
767 "Add a node to connect to and attempt to keep the connection "
768 "open (see the `addnode` RPC command help for more info)",
771 argsman.
AddArg(
"-asmap=<file>",
772 strprintf(
"Specify asn mapping used for bucketing of the "
773 "peers (default: %s). Relative paths will be "
774 "prefixed by the net-specific datadir location.",
777 argsman.
AddArg(
"-bantime=<n>",
778 strprintf(
"Default duration (in seconds) of manually "
779 "configured bans (default: %u)",
783 "-bind=<addr>[:<port>][=onion]",
784 strprintf(
"Bind to given address and always listen on it (default: "
785 "0.0.0.0). Use [host]:port notation for IPv6. Append =onion "
786 "to tag any incoming connections to that address and port as "
787 "incoming Tor connections (default: 127.0.0.1:%u=onion, "
788 "testnet: 127.0.0.1:%u=onion, regtest: 127.0.0.1:%u=onion)",
789 defaultBaseParams->OnionServiceTargetPort(),
790 testnetBaseParams->OnionServiceTargetPort(),
791 regtestBaseParams->OnionServiceTargetPort()),
796 "Connect only to the specified node(s); -connect=0 disables automatic "
797 "connections (the rules for this peer are the same as for -addnode)",
802 "Discover own IP addresses (default: 1 when listening and no "
803 "-externalip or -proxy)",
806 strprintf(
"Allow DNS lookups for -addnode, -seednode and "
807 "-connect (default: %d)",
813 "Query for peer addresses via DNS lookup, if low on addresses "
814 "(default: %u unless -connect used)",
817 argsman.
AddArg(
"-externalip=<ip>",
"Specify your own public address",
822 "Allow fixed seeds if DNS seeds don't provide peers (default: %u)",
828 "Always query for peer addresses via DNS lookup (default: %d)",
831 argsman.
AddArg(
"-overridednsseed",
832 "If set, only use the specified DNS seed when "
833 "querying for peer addresses via DNS lookup.",
837 "Accept connections from outside (default: 1 if no -proxy or -connect)",
841 strprintf(
"Automatically create Tor onion service (default: %d)",
845 "-maxconnections=<n>",
846 strprintf(
"Maintain at most <n> connections to peers. The effective "
847 "limit depends on system limitations and might be lower than "
848 "the specified value (default: %u)",
851 argsman.
AddArg(
"-maxreceivebuffer=<n>",
852 strprintf(
"Maximum per-connection receive buffer, <n>*1000 "
853 "bytes (default: %u)",
857 "-maxsendbuffer=<n>",
859 "Maximum per-connection send buffer, <n>*1000 bytes (default: %u)",
863 "-maxtimeadjustment",
864 strprintf(
"Maximum allowed median peer time offset adjustment. Local "
865 "perspective of time may be influenced by peers forward or "
866 "backward by this amount. (default: %u seconds)",
869 argsman.
AddArg(
"-onion=<ip:port>",
870 strprintf(
"Use separate SOCKS5 proxy to reach peers via Tor "
871 "onion services (default: %s)",
874 argsman.
AddArg(
"-i2psam=<ip:port>",
875 "I2P SAM proxy to reach I2P peers and accept I2P "
876 "connections (default: none)",
879 "-i2pacceptincoming",
880 "If set and -i2psam is also set then incoming I2P connections are "
881 "accepted via the SAM proxy. If this is not set but -i2psam is set "
882 "then only outgoing connections will be made to the I2P network. "
883 "Ignored if -i2psam is not set. Listening for incoming I2P connections "
884 "is done through the SAM proxy, not by binding to a local address and "
890 "Make outgoing connections only through network <net> (" +
892 "). Incoming connections are not affected by this option. This "
893 "option can be specified multiple times to allow multiple "
894 "networks. Warning: if it is used with non-onion networks "
895 "and the -onion or -proxy option is set, then outbound onion "
896 "connections will still be made; use -noonion or -onion=0 to "
897 "disable outbound onion connections in this case",
899 argsman.
AddArg(
"-peerbloomfilters",
900 strprintf(
"Support filtering of blocks and transaction with "
901 "bloom filters (default: %d)",
907 "Serve compact block filters to peers per BIP 157 (default: %u)",
910 argsman.
AddArg(
"-permitbaremultisig",
911 strprintf(
"Relay non-P2SH multisig (default: %d)",
917 argsman.
AddArg(
"-port=<port>",
918 strprintf(
"Listen for connections on <port>. Nodes not "
919 "using the default ports (default: %u, "
920 "testnet: %u, regtest: %u) are unlikely to get "
921 "incoming connections. Not relevant for I2P (see "
923 defaultChainParams->GetDefaultPort(),
924 testnetChainParams->GetDefaultPort(),
925 regtestChainParams->GetDefaultPort()),
928 argsman.
AddArg(
"-proxy=<ip:port>",
"Connect through SOCKS5 proxy",
932 strprintf(
"Randomize credentials for every proxy connection. "
933 "This enables Tor stream isolation (default: %d)",
938 "Connect to a node to retrieve peer addresses, and disconnect",
942 "Enable all P2P network activity (default: 1). Can be changed "
943 "by the setnetworkactive RPC command",
945 argsman.
AddArg(
"-timeout=<n>",
946 strprintf(
"Specify connection timeout in milliseconds "
947 "(minimum: 1, default: %d)",
952 strprintf(
"Specify p2p connection timeout in seconds. This option "
953 "determines the amount of time a peer may be inactive before "
954 "the connection to it is dropped. (minimum: 1, default: %d)",
958 "-torcontrol=<ip>:<port>",
960 "Tor control port to use if onion listening enabled (default: %s)",
963 argsman.
AddArg(
"-torpassword=<pass>",
964 "Tor control port password (default: empty)",
970 "Use UPnP to map the listening port (default: 1 when "
971 "listening and no -proxy)",
976 strprintf(
"Use UPnP to map the listening port (default: %u)", 0),
980 hidden_args.emplace_back(
"-upnp");
985 strprintf(
"Use NAT-PMP to map the listening port (default: %s)",
989 hidden_args.emplace_back(
"-natpmp");
992 "-whitebind=<[permissions@]addr>",
993 "Bind to the given address and add permission flags to the peers "
995 "Use [host]:port notation for IPv6. Allowed permissions: " +
998 "Specify multiple permissions separated by commas (default: "
999 "download,noban,mempool,relay). Can be specified multiple times.",
1002 argsman.
AddArg(
"-whitelist=<[permissions@]IP address or network>",
1003 "Add permission flags to the peers using the given "
1004 "IP address (e.g. 1.2.3.4) or CIDR-notated network "
1005 "(e.g. 1.2.3.0/24). "
1006 "Uses the same permissions as -whitebind. "
1007 "Additional flags \"in\" and \"out\" control whether "
1008 "permissions apply to incoming connections and/or manual "
1009 "(default: incoming only). "
1010 "Can be specified multiple times.",
1013 "-maxuploadtarget=<n>",
1014 strprintf(
"Tries to keep outbound traffic under the given target (in "
1015 "MiB per 24h). Limit does not apply to peers with 'download' "
1016 "permission. 0 = no limit (default: %d)",
1023 argsman.
AddArg(
"-zmqpubhashblock=<address>",
1024 "Enable publish hash block in <address>",
1026 argsman.
AddArg(
"-zmqpubhashtx=<address>",
1027 "Enable publish hash transaction in <address>",
1029 argsman.
AddArg(
"-zmqpubrawblock=<address>",
1030 "Enable publish raw block in <address>",
1032 argsman.
AddArg(
"-zmqpubrawtx=<address>",
1033 "Enable publish raw transaction in <address>",
1035 argsman.
AddArg(
"-zmqpubsequence=<address>",
1036 "Enable publish hash block and tx sequence in <address>",
1039 "-zmqpubhashblockhwm=<n>",
1040 strprintf(
"Set publish hash block outbound message high water "
1041 "mark (default: %d)",
1045 "-zmqpubhashtxhwm=<n>",
1046 strprintf(
"Set publish hash transaction outbound message high "
1047 "water mark (default: %d)",
1051 "-zmqpubrawblockhwm=<n>",
1052 strprintf(
"Set publish raw block outbound message high water "
1053 "mark (default: %d)",
1057 "-zmqpubrawtxhwm=<n>",
1058 strprintf(
"Set publish raw transaction outbound message high "
1059 "water mark (default: %d)",
1062 argsman.
AddArg(
"-zmqpubsequencehwm=<n>",
1063 strprintf(
"Set publish hash sequence message high water mark"
1068 hidden_args.emplace_back(
"-zmqpubhashblock=<address>");
1069 hidden_args.emplace_back(
"-zmqpubhashtx=<address>");
1070 hidden_args.emplace_back(
"-zmqpubrawblock=<address>");
1071 hidden_args.emplace_back(
"-zmqpubrawtx=<address>");
1072 hidden_args.emplace_back(
"-zmqpubsequence=<n>");
1073 hidden_args.emplace_back(
"-zmqpubhashblockhwm=<n>");
1074 hidden_args.emplace_back(
"-zmqpubhashtxhwm=<n>");
1075 hidden_args.emplace_back(
"-zmqpubrawblockhwm=<n>");
1076 hidden_args.emplace_back(
"-zmqpubrawtxhwm=<n>");
1077 hidden_args.emplace_back(
"-zmqpubsequencehwm=<n>");
1082 strprintf(
"How many blocks to check at startup (default: %u, 0 = all)",
1086 argsman.
AddArg(
"-checklevel=<n>",
1087 strprintf(
"How thorough the block verification of "
1088 "-checkblocks is: %s (0-4, default: %u)",
1092 argsman.
AddArg(
"-checkblockindex",
1093 strprintf(
"Do a consistency check for the block tree, "
1094 "chainstate, and other validation data structures "
1095 "occasionally. (default: %u, regtest: %u)",
1096 defaultChainParams->DefaultConsistencyChecks(),
1097 regtestChainParams->DefaultConsistencyChecks()),
1100 argsman.
AddArg(
"-checkaddrman=<n>",
1101 strprintf(
"Run addrman consistency checks every <n> "
1102 "operations. Use 0 to disable. (default: %u)",
1107 "-checkmempool=<n>",
1108 strprintf(
"Run mempool consistency checks every <n> transactions. Use "
1109 "0 to disable. (default: %u, regtest: %u)",
1110 defaultChainParams->DefaultConsistencyChecks(),
1111 regtestChainParams->DefaultConsistencyChecks()),
1114 argsman.
AddArg(
"-checkpoints",
1115 strprintf(
"Only accept block chain matching built-in "
1116 "checkpoints (default: %d)",
1120 argsman.
AddArg(
"-deprecatedrpc=<method>",
1121 "Allows deprecated RPC method(s) to be used",
1125 "-stopafterblockimport",
1126 strprintf(
"Stop running after importing blocks from disk (default: %d)",
1130 argsman.
AddArg(
"-stopatheight",
1131 strprintf(
"Stop running after reaching the given height in "
1132 "the main chain (default: %u)",
1136 argsman.
AddArg(
"-addrmantest",
"Allows to test address relay on localhost",
1139 argsman.
AddArg(
"-capturemessages",
"Capture all P2P messages to disk",
1142 argsman.
AddArg(
"-mocktime=<n>",
1148 "-maxsigcachesize=<n>",
1149 strprintf(
"Limit size of signature cache to <n> MiB (default: %u)",
1154 "-maxscriptcachesize=<n>",
1155 strprintf(
"Limit size of script cache to <n> MiB (default: %u)",
1159 argsman.
AddArg(
"-maxtipage=<n>",
1160 strprintf(
"Maximum tip age in seconds to consider node in "
1161 "initial block download (default: %u)",
1166 argsman.
AddArg(
"-uacomment=<cmt>",
1167 "Append comment to the user agent string",
1169 argsman.
AddArg(
"-uaclientname=<clientname>",
"Set user agent client name",
1171 argsman.
AddArg(
"-uaclientversion=<clientversion>",
1180 "Relay and mine \"non-standard\" transactions (%sdefault: %u)",
1181 "testnet/regtest only; ", defaultChainParams->RequireStandard()),
1184 argsman.
AddArg(
"-excessiveblocksize=<n>",
1185 strprintf(
"Do not accept blocks larger than this limit, in "
1186 "bytes (default: %d)",
1192 "-dustrelayfee=<amt>",
1193 strprintf(
"Fee rate (in %s/kB) used to define dust, the value of an "
1194 "output such that it will cost about 1/3 of its value in "
1195 "fees at this fee rate to spend it. (default: %s)",
1201 "-bytespersigcheck",
1202 strprintf(
"Equivalent bytes per sigCheck in transactions for relay and "
1203 "mining (default: %u).",
1208 strprintf(
"DEPRECATED: Equivalent bytes per sigCheck in transactions "
1209 "for relay and mining (default: %u). This has been "
1210 "deprecated since v0.26.8 and will be removed in the future, "
1211 "please use -bytespersigcheck instead.",
1216 strprintf(
"Relay and mine data carrier transactions (default: %d)",
1221 strprintf(
"Maximum size of data in data carrier transactions "
1222 "we relay and mine (default: %u)",
1226 "-minrelaytxfee=<amt>",
1227 strprintf(
"Fees (in %s/kB) smaller than this are rejected for "
1228 "relaying, mining and transaction creation (default: %s)",
1233 strprintf(
"Add 'relay' permission to whitelisted peers "
1234 "with default permissions. This will accept relayed "
1235 "transactions even when not relaying transactions "
1240 "-whitelistforcerelay",
1241 strprintf(
"Add 'forcerelay' permission to whitelisted peers "
1242 "with default permissions. This will relay transactions "
1243 "even if the transactions were already in the mempool "
1248 argsman.
AddArg(
"-blockmaxsize=<n>",
1249 strprintf(
"Set maximum block size in bytes (default: %d)",
1253 "-blockmintxfee=<amt>",
1254 strprintf(
"Set lowest fee rate (in %s/kB) for transactions to "
1255 "be included in block creation. (default: %s)",
1259 argsman.
AddArg(
"-blockversion=<n>",
1260 "Override block version to test forking scenarios",
1264 argsman.
AddArg(
"-server",
"Accept command line and JSON-RPC commands",
1267 strprintf(
"Accept public REST requests (default: %d)",
1271 "-rpcbind=<addr>[:port]",
1272 "Bind to given address to listen for JSON-RPC connections. Do not "
1273 "expose the RPC server to untrusted networks such as the public "
1274 "internet! This option is ignored unless -rpcallowip is also passed. "
1275 "Port is optional and overrides -rpcport. Use [host]:port notation "
1276 "for IPv6. This option can be specified multiple times (default: "
1277 "127.0.0.1 and ::1 i.e., localhost)",
1283 strprintf(
"Throw a non-fatal error at runtime if the documentation for "
1284 "an RPC is incorrect (default: %u)",
1288 "-rpccookiefile=<loc>",
1289 "Location of the auth cookie. Relative paths will be prefixed "
1290 "by a net-specific datadir location. (default: data dir)",
1292 argsman.
AddArg(
"-rpcuser=<user>",
"Username for JSON-RPC connections",
1295 argsman.
AddArg(
"-rpcpassword=<pw>",
"Password for JSON-RPC connections",
1299 "-rpcwhitelist=<whitelist>",
1300 "Set a whitelist to filter incoming RPC calls for a specific user. The "
1301 "field <whitelist> comes in the format: <USERNAME>:<rpc 1>,<rpc "
1302 "2>,...,<rpc n>. If multiple whitelists are set for a given user, they "
1303 "are set-intersected. See -rpcwhitelistdefault documentation for "
1304 "information on default whitelist behavior.",
1307 "-rpcwhitelistdefault",
1308 "Sets default behavior for rpc whitelisting. Unless "
1309 "rpcwhitelistdefault is set to 0, if any -rpcwhitelist is set, the rpc "
1310 "server acts as if all rpc users are subject to "
1311 "empty-unless-otherwise-specified whitelists. If rpcwhitelistdefault "
1312 "is set to 1 and no -rpcwhitelist is set, rpc server acts as if all "
1313 "rpc users are subject to empty whitelists.",
1316 "-rpcauth=<userpw>",
1317 "Username and HMAC-SHA-256 hashed password for JSON-RPC connections. "
1318 "The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A "
1319 "canonical python script is included in share/rpcauth. The client then "
1320 "connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> "
1321 "pair of arguments. This option can be specified multiple times",
1323 argsman.
AddArg(
"-rpcport=<port>",
1324 strprintf(
"Listen for JSON-RPC connections on <port> "
1325 "(default: %u, testnet: %u, regtest: %u)",
1326 defaultBaseParams->RPCPort(),
1327 testnetBaseParams->RPCPort(),
1328 regtestBaseParams->RPCPort()),
1333 "Allow JSON-RPC connections from specified source. Valid for "
1334 "<ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. "
1335 "1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). "
1336 "This option can be specified multiple times",
1341 "Set the number of threads to service RPC calls (default: %d)",
1345 "-rpccorsdomain=value",
1346 "Domain from which to accept cross origin requests (browser enforced)",
1349 argsman.
AddArg(
"-rpcworkqueue=<n>",
1350 strprintf(
"Set the depth of the work queue to service RPC "
1351 "calls (default: %d)",
1355 argsman.
AddArg(
"-rpcservertimeout=<n>",
1356 strprintf(
"Timeout during HTTP requests (default: %d)",
1362 argsman.
AddArg(
"-daemon",
1363 strprintf(
"Run in the background as a daemon and accept "
1364 "commands (default: %d)",
1367 argsman.
AddArg(
"-daemonwait",
1368 strprintf(
"Wait for initialization to be finished before "
1369 "exiting. This implies -daemon (default: %d)",
1373 hidden_args.emplace_back(
"-daemon");
1374 hidden_args.emplace_back(
"-daemonwait");
1378 argsman.
AddArg(
"-avalanche",
1379 strprintf(
"Enable the avalanche feature (default: %u)",
1383 "-avalanchestakingrewards",
1384 strprintf(
"Enable the avalanche staking rewards feature (default: %u, "
1385 "testnet: %u, regtest: %u)",
1386 defaultChainParams->GetConsensus().enableStakingRewards,
1387 testnetChainParams->GetConsensus().enableStakingRewards,
1388 regtestChainParams->GetConsensus().enableStakingRewards),
1390 argsman.
AddArg(
"-avalancheconflictingproofcooldown",
1391 strprintf(
"Mandatory cooldown before a proof conflicting "
1392 "with an already registered one can be considered "
1393 "in seconds (default: %u)",
1396 argsman.
AddArg(
"-avalanchepeerreplacementcooldown",
1397 strprintf(
"Mandatory cooldown before a peer can be replaced "
1398 "in seconds (default: %u)",
1402 "-avaminquorumstake",
1404 "Minimum amount of known stake for a usable quorum (default: %s)",
1408 "-avaminquorumconnectedstakeratio",
1409 strprintf(
"Minimum proportion of known stake we"
1410 " need nodes for to have a usable quorum (default: %s). "
1411 "This parameter is parsed with a maximum precision of "
1416 "-avaminavaproofsnodecount",
1417 strprintf(
"Minimum number of node that needs to send us an avaproofs"
1418 " message before we consider we have a usable quorum"
1423 "-avastalevotethreshold",
1424 strprintf(
"Number of avalanche votes before a voted item goes stale "
1425 "when voting confidence is low (default: %u)",
1429 "-avastalevotefactor",
1431 "Factor affecting the number of avalanche votes before a voted "
1432 "item goes stale when voting confidence is high (default: %u)",
1435 argsman.
AddArg(
"-avacooldown",
1436 strprintf(
"Mandatory cooldown between two avapoll in "
1437 "milliseconds (default: %u)",
1442 strprintf(
"Avalanche query timeout in milliseconds (default: %u)",
1447 "Avalanche proof delegation to the master key used by this node "
1448 "(default: none). Should be used in conjunction with -avaproof and "
1451 argsman.
AddArg(
"-avaproof",
1452 "Avalanche proof to be used by this node (default: none)",
1455 "-avaproofstakeutxoconfirmations",
1457 "Minimum number of confirmations before a stake utxo is mature"
1458 " enough to be included into a proof. Utxos in the mempool are not "
1459 "accepted (i.e this value must be greater than 0) (default: %s)",
1462 argsman.
AddArg(
"-avaproofstakeutxodustthreshold",
1463 strprintf(
"Minimum value each stake utxo must have to be "
1464 "considered valid (default: %s)",
1467 argsman.
AddArg(
"-avamasterkey",
1468 "Master key associated with the proof. If a proof is "
1469 "required, this is mandatory.",
1472 argsman.
AddArg(
"-avasessionkey",
"Avalanche session key (default: random)",
1475 argsman.
AddArg(
"-enablertt",
1476 strprintf(
"Whether to enforce Real Time Targeting via "
1477 "Avalanche, default (%u)",
1481 "-maxavalancheoutbound",
1483 "Set the maximum number of avalanche outbound peers to connect to. "
1484 "Note that this option takes precedence over the -maxconnections "
1485 "option (default: %u).",
1490 strprintf(
"Whether to save the avalanche peers upon shutdown and load "
1491 "them upon startup (default: %u).",
1495 hidden_args.emplace_back(
"-avalanchepreconsensus");
1496 hidden_args.emplace_back(
"-avalanchestakingpreconsensus");
1507 if (pBlockIndex !=
nullptr) {
1517static void StartupNotify(
const ArgsManager &args) {
1518 std::string cmd = args.
GetArg(
"-startupnotify",
"");
1520 std::thread t(runCommand, cmd);
1558 "%s: parameter interaction: -bind set -> setting -listen=1\n",
1564 LogPrintf(
"%s: parameter interaction: -whitebind set -> setting "
1574 LogPrintf(
"%s: parameter interaction: -connect set -> setting "
1579 LogPrintf(
"%s: parameter interaction: -connect set -> setting "
1590 "%s: parameter interaction: -proxy set -> setting -listen=0\n",
1598 "%s: parameter interaction: -proxy set -> setting -upnp=0\n",
1603 "%s: parameter interaction: -proxy set -> setting -natpmp=0\n",
1608 LogPrintf(
"%s: parameter interaction: -proxy set -> setting "
1619 "%s: parameter interaction: -listen=0 -> setting -upnp=0\n",
1624 "%s: parameter interaction: -listen=0 -> setting -natpmp=0\n",
1629 "%s: parameter interaction: -listen=0 -> setting -discover=0\n",
1633 LogPrintf(
"%s: parameter interaction: -listen=0 -> setting "
1638 LogPrintf(
"%s: parameter interaction: -listen=0 -> setting "
1639 "-i2pacceptincoming=0\n",
1644 if (args.
IsArgSet(
"-externalip")) {
1647 LogPrintf(
"%s: parameter interaction: -externalip set -> setting "
1656 LogPrintf(
"%s: parameter interaction: -blocksonly=1 -> setting "
1657 "-whitelistrelay=0\n",
1666 LogPrintf(
"%s: parameter interaction: -whitelistforcerelay=1 -> "
1667 "setting -whitelistrelay=1\n",
1674 const bool fAvalanche =
1694int nUserMaxConnections;
1697int64_t peer_connect_timeout;
1698std::set<BlockFilterType> g_enabled_filter_types;
1706 std::set_new_handler(std::terminate);
1707 LogPrintf(
"Error: Out of memory. Terminating.\n");
1717 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
1718 _CrtSetReportFile(_CRT_WARN, CreateFileA(
"NUL", GENERIC_WRITE, 0,
nullptr,
1719 OPEN_EXISTING, 0, 0));
1721 _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
1725 SetProcessDEPPolicy(PROCESS_DEP_ENABLE);
1729 Untranslated(
"Initializing wait-for-shutdown state failed."));
1750 signal(SIGPIPE, SIG_IGN);
1752 SetConsoleCtrlHandler(consoleCtrlHandler,
true);
1772 errors +=
strprintf(
_(
"Config setting for %s only applied on %s "
1773 "network when in [%s] section.") +
1775 arg, network, network);
1778 if (!errors.
empty()) {
1786 _(
"Section [%s] is not recognized.") +
1788 section.m_file, section.m_line, section.m_name);
1791 if (!warnings.
empty()) {
1797 strprintf(
_(
"Specified blocks directory \"%s\" does not exist."),
1798 args.
GetArg(
"-blocksdir",
"")));
1802 std::string blockfilterindex_value =
1804 if (blockfilterindex_value ==
"" || blockfilterindex_value ==
"1") {
1806 }
else if (blockfilterindex_value !=
"0") {
1807 const std::vector<std::string> names =
1808 args.
GetArgs(
"-blockfilterindex");
1809 for (
const auto &
name : names) {
1815 g_enabled_filter_types.insert(filter_type);
1824 _(
"Cannot set -peerblockfilters without -blockfilterindex."));
1833 return InitError(
_(
"Prune mode is incompatible with -txindex."));
1837 _(
"Prune mode is incompatible with -coinstatsindex."));
1840 return InitError(
_(
"Prune mode is incompatible with -chronik."));
1846 args.
GetArgs(
"-bind").size() + args.
GetArgs(
"-whitebind").size();
1849 "Cannot set -bind or -whitebind together with -listen=0"));
1853 int nBind = std::max(nUserBind,
size_t(1));
1854 nUserMaxConnections =
1856 nMaxConnections = std::max(nUserMaxConnections, 0);
1859 const int maxAvalancheOutbound = args.
GetIntArg(
1861 const bool fAvalanche =
1863 if (fAvalanche && maxAvalancheOutbound > nMaxConnections) {
1864 nMaxConnections = std::max(maxAvalancheOutbound, nMaxConnections);
1866 LogPrintf(
"Increasing -maxconnections from %d to %d to comply with "
1867 "-maxavalancheoutbound\n",
1868 nUserMaxConnections, nMaxConnections);
1880 int fd_max = FD_SETSIZE;
1882 nMaxConnections = std::max(
1883 std::min<int>(nMaxConnections,
1888 return InitError(
_(
"Not enough file descriptors available."));
1894 if (nMaxConnections < nUserMaxConnections) {
1898 LogPrintf(
"Reducing -maxconnections from %d to %d, because of system "
1900 nUserMaxConnections, nMaxConnections);
1907 const int64_t nProposedExcessiveBlockSize =
1909 if (nProposedExcessiveBlockSize <= 0 ||
1912 _(
"Excessive block size must be > 1,000,000 bytes (1MB)"));
1916 const int64_t nProposedMaxGeneratedBlockSize =
1918 if (nProposedMaxGeneratedBlockSize <= 0) {
1919 return InitError(
_(
"Max generated block size must be greater than 0"));
1921 if (uint64_t(nProposedMaxGeneratedBlockSize) > config.
GetMaxBlockSize()) {
1922 return InitError(
_(
"Max generated block size (blockmaxsize) cannot "
1923 "exceed the excessive block size "
1924 "(excessiveblocksize)"));
1932 peer_connect_timeout =
1934 if (peer_connect_timeout <= 0) {
1936 "peertimeout cannot be configured with a negative value."));
1942 if (args.
IsArgSet(
"-blockmintxfee")) {
1946 args.
GetArg(
"-blockmintxfee",
"")));
1966 if (args.
IsArgSet(
"-proxy") && args.
GetArg(
"-proxy",
"").empty()) {
1968 "No proxy server specified. Use -proxy=<ip> or -proxy=<ip:port>."));
1972 const int64_t stakeUtxoMinConfirmations =
1973 args.
GetIntArg(
"-avaproofstakeutxoconfirmations",
1977 stakeUtxoMinConfirmations !=
1979 return InitError(
_(
"Avalanche stake UTXO minimum confirmations can "
1980 "only be set on test chains."));
1983 if (stakeUtxoMinConfirmations <= 0) {
1984 return InitError(
_(
"Avalanche stake UTXO minimum confirmations must be "
1985 "a positive integer."));
1988 if (args.
IsArgSet(
"-avaproofstakeutxodustthreshold")) {
1991 args.
GetArg(
"-avaproofstakeutxodustthreshold",
""), amount);
1994 "avaproofstakeutxodustthreshold",
1995 args.
GetArg(
"-avaproofstakeutxodustthreshold",
"")));
2000 return InitError(
_(
"Avalanche stake UTXO dust threshold can "
2001 "only be set on test chains."));
2006 if (fAvalanche && args.
IsArgSet(
"-avaproof")) {
2008 return InitError(
_(
"Running a staking node requires accepting "
2009 "inbound connections. Please enable -listen."));
2012 return InitError(
_(
"Running a staking node behind a proxy is not "
2013 "supported. Please disable -proxy."));
2016 return InitError(
_(
"Running a staking node behind I2P is not "
2017 "supported. Please disable -i2psam."));
2021 _(
"Restricting the outbound network is not supported when "
2022 "running a staking node. Please disable -onlynet."));
2032 .notifications = notifications,
2037 BlockManager::Options blockman_opts_dummy{
2038 .chainparams = chainman_opts_dummy.config.GetChainParams(),
2054 _(
"Cannot write to data directory '%s'; check permissions."),
2059 "%s. %s is probably already running."),
2073 _(
"Initialization sanity check failed. %s is shutting down."),
2122 LogPrintf(
"Using at most %i automatic connections (%i file descriptors "
2124 nMaxConnections, nFD);
2128 !args.
GetPathArg(
"-datadir").is_absolute()) {
2129 LogPrintf(
"Warning: relative datadir option '%s' specified, which will "
2130 "be interpreted relative to the current working directory "
2131 "'%s'. This is fragile, because if bitcoin is started in the "
2132 "future from a different location, it will be unable to "
2133 "locate the current data files. There could also be data "
2134 "loss if bitcoin is started while in a temporary "
2136 args.
GetArg(
"-datadir",
""),
2145 _(
"Unable to allocate memory for -maxsigcachesize: '%s' MiB"),
2150 validation_cache_sizes.script_execution_cache_bytes)) {
2152 _(
"Unable to allocate memory for -maxscriptcachesize: '%s' MiB"),
2158 if (script_threads <= 0) {
2166 script_threads = std::max(script_threads - 1, 0);
2171 LogPrintf(
"Script verification uses %d additional threads\n",
2173 if (script_threads >= 1) {
2178 node.scheduler = std::make_unique<CScheduler>();
2181 node.scheduler->m_service_thread =
2183 [&] {
node.scheduler->serviceQueue(); });
2186 node.scheduler->scheduleEvery(
2191 std::chrono::minutes{1});
2200 for (
const auto &client :
node.chain_clients) {
2201 client->registerRpcs();
2217 _(
"Unable to start HTTP server. See debug log for details."));
2222 for (
const auto &client :
node.chain_clients) {
2223 if (!client->verify()) {
2243 std::vector<bool> asmap;
2247 if (!asmap_path.is_absolute()) {
2256 if (asmap.size() == 0) {
2262 LogPrintf(
"Using asmap version %s for IP bucketing\n",
2265 LogPrintf(
"Using /16 prefix for IP bucketing\n");
2268 uiInterface.InitMessage(
_(
"Loading P2P addresses...").translated);
2269 auto addrman{
LoadAddrman(chainparams, asmap, args)};
2273 node.addrman = std::move(*addrman);
2277 node.banman = std::make_unique<BanMan>(
2281 node.connman = std::make_unique<CConnman>(
2282 config, GetRand<uint64_t>(), GetRand<uint64_t>(), *
node.addrman,
2286 std::vector<std::string> uacomments;
2287 for (
const std::string &cmt : args.
GetArgs(
"-uacomment")) {
2290 _(
"User Agent comment (%s) contains unsafe characters."), cmt));
2292 uacomments.push_back(cmt);
2295 const std::string client_version =
2299 _(
"-uaclientname (%s) contains invalid characters."), client_name));
2301 if (client_version !=
2304 strprintf(
_(
"-uaclientversion (%s) contains invalid characters."),
2307 const std::string strSubVersion =
2311 _(
"Total length of network version string (%i) exceeds maximum "
2312 "length (%i). Reduce the number or size of uacomments."),
2317 std::set<enum Network> nets;
2318 for (
const std::string &snet : args.
GetArgs(
"-onlynet")) {
2322 _(
"Unknown network specified in -onlynet: '%s'"), snet));
2326 for (
int n = 0; n <
NET_MAX; n++) {
2328 if (!nets.count(net)) {
2338 bool proxyRandomize =
2343 std::string proxyArg = args.
GetArg(
"-proxy",
"");
2345 if (proxyArg !=
"" && proxyArg !=
"0") {
2349 _(
"Invalid -proxy address or hostname: '%s'"), proxyArg));
2355 _(
"Invalid -proxy address or hostname: '%s'"), proxyArg));
2371 std::string onionArg = args.
GetArg(
"-onion",
"");
2372 if (onionArg !=
"") {
2373 if (onionArg ==
"0") {
2380 _(
"Invalid -onion address or hostname: '%s'"), onionArg));
2385 _(
"Invalid -onion address or hostname: '%s'"), onionArg));
2392 for (
const std::string &strAddr : args.
GetArgs(
"-externalip")) {
2406 return chainman->m_blockman.ReadBlockFromDisk(block, index);
2416 node.notifications = std::make_unique<KernelNotifications>();
2418 bool fReindexChainState = args.
GetBoolArg(
"-reindex-chainstate",
false);
2424 .notifications = *
node.notifications,
2429 if (chainman_opts.checkpoints_enabled) {
2430 LogPrintf(
"Checkpoints will be verified.\n");
2432 LogPrintf(
"Skipping checkpoint verification.\n");
2435 BlockManager::Options blockman_opts{
2436 .chainparams = chainman_opts.config.GetChainParams(),
2447 LogPrintf(
"* Using %.1f MiB for block index database\n",
2450 LogPrintf(
"* Using %.1f MiB for transaction index database\n",
2451 cache_sizes.
tx_index * (1.0 / 1024 / 1024));
2454 LogPrintf(
"* Using %.1f MiB for %s block filter index database\n",
2458 LogPrintf(
"* Using %.1f MiB for chain state database\n",
2459 cache_sizes.
coins_db * (1.0 / 1024 / 1024));
2470 mempool_opts.check_ratio =
2471 std::clamp<int>(mempool_opts.check_ratio, 0, 1'000'000);
2477 int64_t nMempoolSizeMin = 101 * 1000 * 40;
2478 if (mempool_opts.max_size_bytes < 0 ||
2480 mempool_opts.max_size_bytes < nMempoolSizeMin)) {
2482 std::ceil(nMempoolSizeMin / 1000000.0)));
2484 LogPrintf(
"* Using %.1f MiB for in-memory UTXO set (plus up to %.1f MiB of "
2485 "unused mempool space)\n",
2486 cache_sizes.
coins * (1.0 / 1024 / 1024),
2487 mempool_opts.max_size_bytes * (1.0 / 1024 / 1024));
2490 node.mempool = std::make_unique<CTxMemPool>(mempool_opts);
2493 std::make_unique<ChainstateManager>(chainman_opts, blockman_opts);
2509 _(
"Error reading from database, shutting down."),
"",
2513 uiInterface.InitMessage(
_(
"Loading block index...").translated);
2515 const int64_t load_block_index_start_time =
GetTimeMillis();
2516 auto catch_exceptions = [](
auto &&f) {
2519 }
catch (
const std::exception &e) {
2522 _(
"Error opening block database"));
2525 auto [status,
error] = catch_exceptions(
2532 "pruned datadir may not have more than %d "
2533 "blocks; only checking available blocks\n",
2536 std::tie(status,
error) = catch_exceptions(
2540 node.chainman->m_options.datadir /
2560 _(
"Do you want to rebuild the block database now?"),
2561 error.original +
".\nPlease restart with -reindex or "
2562 "-reindex-chainstate to recover.",
2570 LogPrintf(
"Aborted block database rebuild. Exiting.\n");
2584 LogPrintf(
"Shutdown requested. Exiting.\n");
2594 args, *
node.chain,
node.connman.get(), chainman,
node.mempool.get(),
2595 *
node.scheduler, avalancheError);
2596 if (!
node.avalanche) {
2601 if (
node.avalanche->isAvalancheServiceAvailable()) {
2611 node.banman.get(), chainman, *
node.mempool,
2612 node.avalanche.get(), peerman_opts);
2635 for (
const auto &filter_type : g_enabled_filter_types) {
2654 const bool fReindexChronik =
2656 if (!chronik::Start(args, config,
node, fReindexChronik)) {
2663 for (
const auto &client :
node.chain_clients) {
2664 if (!client->load()) {
2674 LogPrintf(
"Unsetting NODE_NETWORK on prune mode\n");
2679 uiInterface.InitMessage(
_(
"Pruning blockstore...").translated);
2680 chainstate->PruneAndFlush();
2688 strprintf(
_(
"Error: Disk space is low for %s"),
2694 strprintf(
_(
"Error: Disk space is low for %s"),
2702 boost::signals2::connection block_notify_genesis_wait_connection;
2705 block_notify_genesis_wait_connection =
2712#if defined(HAVE_SYSTEM)
2713 const std::string block_notify = args.
GetArg(
"-blocknotify",
"");
2714 if (!block_notify.empty()) {
2715 uiInterface.NotifyBlockTip_connect([block_notify](
2721 std::string command = block_notify;
2723 std::thread t(runCommand, command);
2730 std::vector<fs::path> vImportFiles;
2731 for (
const std::string &strFile : args.
GetArgs(
"-loadblock")) {
2752 block_notify_genesis_wait_connection.disconnect();
2761 int chain_active_height;
2777 if (tip_info && chainman.m_best_header) {
2779 tip_info->
header_time = chainman.m_best_header->GetBlockTime();
2782 LogPrintf(
"nBestHeight = %d\n", chain_active_height);
2784 node.peerman->SetBestHeight(chain_active_height);
2796 ? args.
GetIntArg(
"-maxavalancheoutbound",
2811 if (
node.avalanche) {
2830 const uint16_t default_bind_port =
static_cast<uint16_t
>(
2833 const auto BadPortWarning = [](
const char *
prefix, uint16_t port) {
2834 return strprintf(
_(
"%s request to listen on port %u. This port is "
2835 "considered \"bad\" and "
2836 "thus it is unlikely that any Bitcoin ABC peers "
2837 "connect to it. See "
2838 "doc/p2p-bad-ports.md for details and a full list."),
2842 for (
const std::string &bind_arg : args.
GetArgs(
"-bind")) {
2844 const size_t index = bind_arg.rfind(
'=');
2845 if (index == std::string::npos) {
2846 if (
Lookup(bind_arg, bind_addr, default_bind_port,
2848 connOptions.
vBinds.push_back(bind_addr);
2855 const std::string network_type = bind_arg.substr(index + 1);
2856 if (network_type ==
"onion") {
2857 const std::string truncated_bind_arg =
2858 bind_arg.substr(0, index);
2859 if (
Lookup(truncated_bind_arg, bind_addr,
2860 BaseParams().OnionServiceTargetPort(),
false)) {
2869 for (
const std::string &strBind : args.
GetArgs(
"-whitebind")) {
2881 args.
GetArgs(
"-bind").empty() && args.
GetArgs(
"-whitebind").empty();
2886 const uint16_t port_arg = args.
GetIntArg(
"-port", 0);
2894 onion_service_target = connOptions.
onion_binds.front();
2897 connOptions.
onion_binds.push_back(onion_service_target);
2903 _(
"More than one onion bind address is provided. Using %s "
2904 "for the automatically created Tor onion service."),
2916 for (
const auto &net : args.
GetArgs(
"-whitelist")) {
2921 connection_direction,
error)) {
2937 const auto connect = args.
GetArgs(
"-connect");
2938 if (connect.size() != 1 || connect[0] !=
"0") {
2943 const std::string &i2psam_arg = args.
GetArg(
"-i2psam",
"");
2944 if (!i2psam_arg.empty()) {
2948 _(
"Invalid -i2psam address or hostname: '%s'"), i2psam_arg));
2959 if (!
node.connman->Start(*
node.scheduler, connOptions)) {
2979 for (
const auto &client :
node.chain_clients) {
2980 client->start(*
node.scheduler);
2984 node.scheduler->scheduleEvery(
2992 if (
node.avalanche) {
2993 node.avalanche->startEventLoop(*
node.scheduler);
2997 node.peerman->StartScheduledTasks(*
node.scheduler);
3001 StartupNotify(args);
util::Result< std::unique_ptr< AddrMan > > LoadAddrman(const CChainParams &chainparams, const std::vector< bool > &asmap, const ArgsManager &args)
Returns an error string on failure.
static constexpr int32_t DEFAULT_ADDRMAN_CONSISTENCY_CHECKS
Default for -checkaddrman.
void SetupHelpOptions(ArgsManager &args)
Add help options to the args manager.
const char *const BITCOIN_SETTINGS_FILENAME
const char *const BITCOIN_CONF_FILENAME
fs::path AbsPathForConfigVal(const ArgsManager &args, const fs::path &path, bool net_specific=true)
Most paths passed as configuration arguments are treated as relative to the datadir if they are not a...
std::vector< bool > DecodeAsmap(fs::path path)
Read asmap from provided binary file.
static constexpr bool DEFAULT_PERSIST_AVAPEERS
Default for -persistavapeers.
static constexpr double AVALANCHE_DEFAULT_MIN_QUORUM_CONNECTED_STAKE_RATIO
Default minimum percentage of stake-weighted peers we must have a node for to constitute a usable quo...
static constexpr size_t AVALANCHE_DEFAULT_PEER_REPLACEMENT_COOLDOWN
Peer replacement cooldown time default value in seconds.
static constexpr double AVALANCHE_DEFAULT_MIN_AVAPROOFS_NODE_COUNT
Default minimum number of nodes that sent us an avaproofs message before we can consider our quorum s...
static constexpr Amount AVALANCHE_DEFAULT_MIN_QUORUM_STAKE
Default minimum cumulative stake of all known peers that constitutes a usable quorum.
static constexpr size_t AVALANCHE_DEFAULT_CONFLICTING_PROOF_COOLDOWN
Conflicting proofs cooldown time default value in seconds.
static constexpr bool AVALANCHE_DEFAULT_ENABLED
Is avalanche enabled by default.
static constexpr size_t AVALANCHE_DEFAULT_COOLDOWN
Avalanche default cooldown in milliseconds.
static constexpr unsigned int DEFAULT_MISBEHAVING_BANTIME
static constexpr std::chrono::minutes DUMP_BANS_INTERVAL
void RPCNotifyBlockChange(const CBlockIndex *pindex)
Callback for when block tip changed.
const std::string & BlockFilterTypeName(BlockFilterType filter_type)
Get the human-readable name for a filter type.
const std::set< BlockFilterType > & AllBlockFilterTypes()
Get a list of known filter types.
const std::string & ListBlockFilterTypes()
Get a comma-separated list of known filter type names.
bool BlockFilterTypeByName(const std::string &name, BlockFilterType &filter_type)
Find a filter type by its human-readable name.
void DestroyAllBlockFilterIndexes()
Destroy all open block filter indexes.
BlockFilterIndex * GetBlockFilterIndex(BlockFilterType filter_type)
Get a block filter index by type.
void ForEachBlockFilterIndex(std::function< void(BlockFilterIndex &)> fn)
Iterate over all running block filter indexes, invoking fn on each.
bool InitBlockFilterIndex(BlockFilterType filter_type, size_t n_cache_size, bool f_memory, bool f_wipe)
Initialize a block filter index for the given type if one does not already exist.
static const char *const DEFAULT_BLOCKFILTERINDEX
std::unique_ptr< const CChainParams > CreateChainParams(const ArgsManager &args, const std::string &chain)
Creates and returns a std::unique_ptr<CChainParams> of the chosen chain.
const CChainParams & Params()
Return the currently selected parameters.
std::unique_ptr< CBaseChainParams > CreateBaseChainParams(const std::string &chain)
Port numbers for incoming Tor connections (8334, 18334, 38334, 18445) have been chosen arbitrarily to...
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
void SetupChainParamsBaseOptions(ArgsManager &argsman)
Set the arguments for chainparams.
static constexpr bool DEFAULT_CHECKPOINTS_ENABLED
static constexpr auto DEFAULT_MAX_TIP_AGE
static constexpr bool DEFAULT_STORE_RECENT_HEADERS_TIME
#define Assert(val)
Identity function.
const std::set< std::string > GetUnsuitableSectionOnlyArgs() const
Log warnings for options in m_section_only_args when they are specified in the default section but no...
std::vector< std::string > GetArgs(const std::string &strArg) const
Return a vector of strings of the given argument.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
fs::path GetBlocksDirPath() const
Get blocks directory path.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
bool SoftSetBoolArg(const std::string &strArg, bool fValue)
Set a boolean argument if it doesn't already have a value.
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
void AddHiddenArgs(const std::vector< std::string > &args)
Add many hidden arguments.
void AddArg(const std::string &name, const std::string &help, unsigned int flags, const OptionsCategory &cat)
Add argument.
fs::path GetPathArg(std::string arg, const fs::path &default_value={}) const
Return path argument or default value.
const std::list< SectionInfo > GetUnrecognizedSections() const
Log warnings for unrecognized section names in the config file.
std::string GetChainName() const
Looks for -regtest, -testnet and returns the appropriate BIP70 chain name.
std::atomic< bool > m_reopen_file
void Stop()
Stops the instance from staying in sync with blockchain updates.
bool BlockUntilSyncedToCurrentChain() const LOCKS_EXCLUDED(void Interrupt()
Blocks the current thread until the index is caught up to the current state of the block chain.
BlockFilterIndex is used to store and retrieve block filters, hashes, and headers for a range of bloc...
static const std::string REGTEST
static const std::string TESTNET
static const std::string MAIN
BIP70 chain name strings (main, test or regtest)
The block chain is a tree shaped structure starting with the genesis block at the root,...
int64_t GetBlockTime() const
BlockHash GetBlockHash() const
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 CBlock & GenesisBlock() const
bool DefaultConsistencyChecks() const
Default value for -checkmempool and -checkblockindex argument.
const ChainTxData & TxData() const
bool IsTestChain() const
If this chain is exclusively used for testing.
uint16_t GetDefaultPort() const
void UnregisterBackgroundSignalScheduler()
Unregister a CScheduler to give callbacks which should run in the background - these callbacks will n...
void RegisterBackgroundSignalScheduler(CScheduler &scheduler)
Register a CScheduler to give callbacks which should run in the background (may only be called once)
void FlushBackgroundCallbacks()
Call any remaining callbacks on the calling thread.
A combination of a network address (CNetAddr) and a (TCP) port.
std::string ToStringIPPort() const
static const int DEFAULT_ZMQ_SNDHWM
static std::unique_ptr< CZMQNotificationInterface > Create(std::function< bool(CBlock &, const CBlockIndex &)> get_block_by_index)
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(
RecursiveMutex & GetMutex() const LOCK_RETURNED(
Alias for cs_main.
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...
const CChainParams & GetParams() const
CChain & ActiveChain() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
Chainstate &InitializeChainstate(CTxMemPool *mempool) EXCLUSIVE_LOCKS_REQUIRED(std::vector< Chainstate * GetAll)()
Instantiate a new chainstate.
node::BlockManager m_blockman
A single BlockManager instance is shared across each constructed chainstate to avoid duplicating bloc...
virtual uint64_t GetMaxBlockSize() const =0
virtual const CChainParams & GetChainParams() const =0
virtual bool SetMaxBlockSize(uint64_t maxBlockSize)=0
virtual void SetCashAddrEncoding(bool)=0
Different type to mark Mutex at global scope.
A writer stream (for serialization) that computes a 256-bit hash.
static bool TryParse(const std::string &str, NetWhitebindPermissions &output, bilingual_str &error)
static bool TryParse(const std::string &str, NetWhitelistPermissions &output, ConnectionDirection &output_connection_direction, bilingual_str &error)
static std::unique_ptr< PeerManager > make(CConnman &connman, AddrMan &addrman, BanMan *banman, ChainstateManager &chainman, CTxMemPool &pool, avalanche::Processor *const avalanche, Options opts)
Class for registering and managing all RPC calls.
virtual void AddWalletOptions(ArgsManager &argsman) const =0
Get wallet help string.
virtual void Construct(node::NodeContext &node) const =0
Add wallets that should be opened to list of chain clients.
virtual bool ParameterInteraction() const =0
Check wallet parameter interaction.
static std::unique_ptr< Processor > MakeProcessor(const ArgsManager &argsman, interfaces::Chain &chain, CConnman *connman, ChainstateManager &chainman, CTxMemPool *mempoolIn, CScheduler &scheduler, bilingual_str &error)
std::string ToString() const
std::string GetHex() const
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Maintains a tree of blocks (stored in m_block_index) which is consulted to determine where the most-w...
const CBlockIndex *GetFirstStoredBlock(const CBlockIndex &start_block) EXCLUSIVE_LOCKS_REQUIRED(bool m_have_pruned
Find the first block that is not pruned.
bool IsPruneMode() const
Whether running in -prune mode.
std::string FormatVersion(int nVersion)
std::string FormatUserAgent(const std::string &name, const std::string &version, const std::vector< std::string > &comments)
Format the subversion field according to BIP 14 spec.
static constexpr int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
const std::string CLIENT_NAME
std::unique_ptr< CoinStatsIndex > g_coin_stats_index
The global UTXO set hash object.
static constexpr bool DEFAULT_COINSTATSINDEX
static const uint64_t DEFAULT_MAX_BLOCK_SIZE
Default setting for maximum allowed size for a block, in bytes.
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
void SetupCurrencyUnitOptions(ArgsManager &argsman)
bilingual_str AmountErrMsg(const std::string &optname, const std::string &strValue)
bilingual_str ResolveErrMsg(const std::string &optname, const std::string &strBind)
bool LockDirectory(const fs::path &directory, const std::string lockfile_name, bool probe_only)
bool DirIsWritable(const fs::path &directory)
int RaiseFileDescriptorLimit(int nMinFD)
This function tries to raise the file descriptor limit to the requested number.
bool CheckDiskSpace(const fs::path &dir, uint64_t additional_bytes)
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
void StopHTTPRPC()
Stop HTTP RPC subsystem.
bool StartHTTPRPC(HTTPRPCRequestProcessor &httpRPCRequestProcessor)
Start HTTP RPC subsystem.
void StartREST(const std::any &context)
Start HTTP REST subsystem.
void StopREST()
Stop HTTP REST subsystem.
void InterruptREST()
Interrupt RPC REST subsystem.
void InterruptHTTPServer()
Interrupt HTTP server threads.
void StartHTTPServer()
Start HTTP server.
void StopHTTPServer()
Stop HTTP server.
bool InitHTTPServer(Config &config)
Initialize HTTP server.
static const int DEFAULT_HTTP_SERVER_TIMEOUT
static const int DEFAULT_HTTP_WORKQUEUE
static const int DEFAULT_HTTP_THREADS
Common init functions shared by bitcoin-node, bitcoin-wallet, etc.
static const char * BITCOIN_PID_FILENAME
The PID file facilities.
static bool CreatePidFile(const ArgsManager &args)
static const bool DEFAULT_PROXYRANDOMIZE
void Interrupt(NodeContext &node)
Interrupt threads.
void InitLogging(const ArgsManager &args)
Initialize global loggers.
bool AppInitLockDataDirectory()
Lock bitcoin data directory.
void SetupServerArgs(NodeContext &node)
Register all arguments with the ArgsManager.
static bool AppInitServers(Config &config, HTTPRPCRequestProcessor &httpRPCRequestProcessor, NodeContext &node)
#define MIN_CORE_FILEDESCRIPTORS
void Shutdown(NodeContext &node)
static void HandleSIGTERM(int)
Signal handlers are very limited in what they are allowed to do.
static GlobalMutex g_genesis_wait_mutex
static void OnRPCStarted()
static void HandleSIGHUP(int)
static fs::path GetPidFile(const ArgsManager &args)
static std::condition_variable g_genesis_wait_cv
bool AppInitMain(Config &config, RPCServer &rpcServer, HTTPRPCRequestProcessor &httpRPCRequestProcessor, NodeContext &node, interfaces::BlockAndHeaderTipInfo *tip_info)
Bitcoin main initialization.
static constexpr bool DEFAULT_CHRONIK
bool AppInitBasicSetup(const ArgsManager &args)
Initialize bitcoin: Basic context setup.
bool AppInitSanityChecks()
Initialization sanity checks: ecc init, sanity checks, dir lock.
bool AppInitInterfaces(NodeContext &node)
Initialize node and wallet interface pointers.
static const char * DEFAULT_ASMAP_FILENAME
void InitParameterInteraction(ArgsManager &args)
Parameter interaction: change current parameters depending on various rules.
static void BlockNotifyGenesisWait(const CBlockIndex *pBlockIndex)
static void OnRPCStopped()
static bool LockDataDirectory(bool probeOnly)
static void registerSignalHandler(int signal, void(*handler)(int))
bool AppInitParameterInteraction(Config &config, const ArgsManager &args)
Initialization: parameter interaction.
static const bool DEFAULT_REST_ENABLE
static boost::signals2::connection rpc_notify_block_change_connection
static void new_handler_terminate()
static const std::string HEADERS_TIME_FILE_NAME
static constexpr bool DEFAULT_DAEMON
Default value for -daemon option.
static constexpr bool DEFAULT_DAEMONWAIT
Default value for -daemonwait option.
BCLog::Logger & LogInstance()
bool error(const char *fmt, const Args &...args)
#define LogPrint(category,...)
#define LogPrintfCategory(category,...)
void StartMapPort(bool use_upnp, bool use_natpmp)
static constexpr bool DEFAULT_NATPMP
static constexpr bool DEFAULT_UPNP
std::optional< bilingual_str > ApplyArgsManOptions(const ArgsManager &argsman, const CChainParams &chainparams, MemPoolOptions &mempool_opts)
Overlay the options set in argsman on top of corresponding members in mempool_opts.
static constexpr unsigned int DEFAULT_MAX_MEMPOOL_SIZE_MB
Default for -maxmempool, maximum megabytes of mempool memory usage.
static constexpr unsigned int DEFAULT_MEMPOOL_EXPIRY_HOURS
Default for -mempoolexpiry, expiration time for mempool transactions in hours.
std::string FormatMoney(const Amount amt)
Do not use these functions to represent or parse monetary amounts to or from JSON but use AmountFromV...
bool ParseMoney(const std::string &money_string, Amount &nRet)
Parse an amount denoted in full coins.
void OnStarted(std::function< void()> slot)
void OnStopped(std::function< void()> slot)
static constexpr Amount PROOF_DUST_THRESHOLD
Minimum amount per utxo.
static auto quoted(const std::string &s)
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to byte string.
static path PathFromString(const std::string &string)
Convert byte string to path object.
std::string get_filesystem_error_message(const fs::filesystem_error &e)
void AddLoggingArgs(ArgsManager &argsman)
void SetLoggingCategories(const ArgsManager &args)
bool SanityChecks()
Ensure a usable environment with all necessary library support.
bool StartLogging(const ArgsManager &args)
void SetLoggingOptions(const ArgsManager &args)
std::unique_ptr< Chain > MakeChain(node::NodeContext &node, const CChainParams ¶ms)
Return implementation of Chain interface.
static constexpr bool DEFAULT_STOPAFTERBLOCKIMPORT
bool DumpMempool(const CTxMemPool &pool, const fs::path &dump_path, FopenFn mockable_fopen_function, bool skip_file_commit)
@ FAILURE_INCOMPATIBLE_DB
@ FAILURE_FATAL
Fatal error which should not prompt to reindex.
@ FAILURE
Generic failure which reindexing may fix.
@ FAILURE_INSUFFICIENT_DBCACHE
CacheSizes CalculateCacheSizes(const ArgsManager &args, size_t n_indexes)
fs::path MempoolPath(const ArgsManager &argsman)
bool ShouldPersistMempool(const ArgsManager &argsman)
void ThreadImport(ChainstateManager &chainman, avalanche::Processor *const avalanche, std::vector< fs::path > vImportFiles, const fs::path &mempool_path)
std::optional< bilingual_str > ApplyArgsManOptions(const ArgsManager &args, BlockManager::Options &opts)
ChainstateLoadResult LoadChainstate(ChainstateManager &chainman, const CacheSizes &cache_sizes, const ChainstateLoadOptions &options)
This sequence can have 4 types of outcomes:
ChainstateLoadResult VerifyLoadedChainstate(ChainstateManager &chainman, const ChainstateLoadOptions &options)
static constexpr bool DEFAULT_PERSIST_MEMPOOL
Default for -persistmempool, indicating whether the node should attempt to automatically load the mem...
std::atomic_bool fReindex
bilingual_str ErrorString(const Result< T > &result)
void TraceThread(const char *thread_name, std::function< void()> thread_func)
A wrapper for do-something-once thread functions.
void ThreadRename(std::string &&)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
void SetReachable(enum Network net, bool reachable)
Mark a network as reachable or unreachable (no automatic connects to it)
bool AddLocal(const CService &addr, int nScore)
void Discover()
Look up IP addresses from all interfaces on the machine and add them to the list of local addresses t...
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS
The maximum number of peer connections to maintain.
static const unsigned int MAX_SUBVERSION_LENGTH
Maximum length of the user agent string in version message.
static const int MAX_ADDNODE_CONNECTIONS
Maximum number of addnode outgoing nodes.
static const size_t DEFAULT_MAXSENDBUFFER
static const int NUM_FDS_MESSAGE_CAPTURE
Number of file descriptors required for message capture.
static const bool DEFAULT_BLOCKSONLY
Default for blocks only.
static const bool DEFAULT_FORCEDNSSEED
static constexpr uint64_t DEFAULT_MAX_UPLOAD_TARGET
The default for -maxuploadtarget.
static const size_t DEFAULT_MAXRECEIVEBUFFER
static const int DEFAULT_MAX_AVALANCHE_OUTBOUND_CONNECTIONS
Maximum number of avalanche enabled outgoing connections by default.
static const bool DEFAULT_FIXEDSEEDS
static const int MAX_FEELER_CONNECTIONS
Maximum number of feeler connections.
static const bool DEFAULT_LISTEN
-listen default
static const int64_t DEFAULT_PEER_CONNECT_TIMEOUT
-peertimeout default
static const bool DEFAULT_DNSSEED
static const int MAX_OUTBOUND_FULL_RELAY_CONNECTIONS
Maximum number of automatic outgoing nodes over which we'll relay everything (blocks,...
static const int MAX_BLOCK_RELAY_ONLY_CONNECTIONS
Maximum number of block-relay-only outgoing connections.
const std::vector< std::string > NET_PERMISSIONS_DOC
static const bool DEFAULT_WHITELISTFORCERELAY
Default for -whitelistforcerelay.
static const bool DEFAULT_WHITELISTRELAY
Default for -whitelistrelay.
static const uint32_t DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN
Default number of non-mempool transactions to keep around for block reconstruction.
static const uint32_t DEFAULT_MAX_ORPHAN_TRANSACTIONS
Default for -maxorphantx, maximum number of orphan transactions kept in memory.
static const bool DEFAULT_PEERBLOCKFILTERS
@ NET_MAX
Dummy value to indicate the number of NET_* constants.
@ NET_ONION
TOR (v2 or v3)
@ NET_UNROUTABLE
Addresses from these networks are not publicly routable on the global Internet.
enum Network ParseNetwork(const std::string &net_in)
bool Lookup(const std::string &name, std::vector< CService > &vAddr, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function)
Resolve a service string to its corresponding service.
bool SetNameProxy(const proxyType &addrProxy)
Set the name proxy to use for all connections to nodes specified by a hostname.
bool IsBadPort(uint16_t port)
Determine if a port is "bad" from the perspective of attempting to connect to a node on that port.
bool SetProxy(enum Network net, const proxyType &addrProxy)
std::vector< std::string > GetNetworkNames(bool append_unroutable)
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
static const int DEFAULT_NAME_LOOKUP
-dns default
static const int DEFAULT_CONNECT_TIMEOUT
-timeout default
uint32_t nBytesPerSigCheck
static constexpr uint64_t DEFAULT_MAX_GENERATED_BLOCK_SIZE
Default for -blockmaxsize, which controls the maximum size of block the mining code will create.
static constexpr Amount DUST_RELAY_TX_FEE(1000 *SATOSHI)
Min feerate for defining dust.
static constexpr bool DEFAULT_PERMIT_BAREMULTISIG
Default for -permitbaremultisig.
static constexpr Amount DEFAULT_MIN_RELAY_TX_FEE_PER_KB(1000 *SATOSHI)
Default for -minrelaytxfee, minimum relay fee for transactions.
static constexpr unsigned int DEFAULT_BYTES_PER_SIGCHECK
Default for -bytespersigcheck .
static constexpr Amount DEFAULT_BLOCK_MIN_TX_FEE_PER_KB(1000 *SATOSHI)
Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by min...
static constexpr std::chrono::milliseconds AVALANCHE_DEFAULT_QUERY_TIMEOUT
How long before we consider that a query timed out.
static constexpr int AVALANCHE_DEFAULT_STAKE_UTXO_CONFIRMATIONS
Minimum number of confirmations before a stake utxo is mature enough to be included into a proof.
ServiceFlags
nServices flags.
void RandAddPeriodic() noexcept
Gather entropy from various expensive sources, and feed them to the PRNG state.
static void RegisterAllRPCCommands(const Config &config, RPCServer &rpcServer, CRPCTable &rpcTable)
Register all context-sensitive RPC commands.
bool(* handler)(Config &config, const std::any &context, HTTPRequest *req, const std::string &strReq)
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
static constexpr bool DEFAULT_RPC_DOC_CHECK
static constexpr bool DEFAULT_ENABLE_RTT
Default for -enablertt.
bool InitScriptExecutionCache(size_t max_size_bytes)
Initializes the script-execution cache.
static constexpr size_t DEFAULT_MAX_SCRIPT_CACHE_BYTES
void SetRPCWarmupFinished()
Mark warmup as done.
void SetRPCWarmupStatus(const std::string &newStatus)
Set the RPC warmup status.
void RpcInterruptionPoint()
Throw JSONRPCError if RPC is not running.
bool ShutdownRequested()
Returns true if a shutdown is requested, false otherwise.
bool InitShutdownState()
Initialize shutdown state.
void StartShutdown()
Request shutdown of the application.
void AbortShutdown()
Clear shutdown flag.
bool InitSignatureCache(size_t max_size_bytes)
static constexpr size_t DEFAULT_MAX_SIG_CACHE_BYTES
static const unsigned int MAX_OP_RETURN_RELAY
Default setting for nMaxDatacarrierBytes.
static const bool DEFAULT_ACCEPT_DATACARRIER
@ SAFE_CHARS_UA_COMMENT
BIP-0014 subset.
void ReplaceAll(std::string &in_out, const std::string &search, const std::string &substitute)
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
int m_max_outbound_block_relay
unsigned int nReceiveFloodSize
int m_max_outbound_full_relay
std::vector< NetWhitebindPermissions > vWhiteBinds
uint64_t nMaxOutboundLimit
CClientUIInterface * uiInterface
std::vector< NetWhitelistPermissions > vWhitelistedRangeIncoming
int m_max_avalanche_outbound
std::vector< CService > onion_binds
std::vector< std::string > m_specified_outgoing
ServiceFlags nLocalServices
std::vector< std::string > m_added_nodes
int64_t m_peer_connect_timeout
std::vector< CService > vBinds
unsigned int nSendBufferMaxSize
bool m_i2p_accept_incoming
std::vector< std::string > vSeedNodes
bool m_use_addrman_outgoing
std::vector< NetEventsInterface * > m_msgproc
bool whitelist_forcerelay
bool bind_on_any
True if the user did not specify -bind= or -whitebind= and thus we should bind on 0....
std::vector< NetWhitelistPermissions > vWhitelistedRangeOutgoing
static const Currency & get()
Block and header tip information.
double verification_progress
An options struct for ChainstateManager, more ergonomically referred to as ChainstateManager::Options...
Options struct containing options for constructing a CTxMemPool.
int check_ratio
The ratio used to determine how often sanity checks will run.
bool require_full_verification
std::function< void()> coins_error_cb
std::function< bool()> check_interrupt
NodeContext struct containing references to chain state and connection state.
#define WAIT_LOCK(cs, name)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define TRY_LOCK(cs, name)
std::string SysErrorString(int err)
Return system error string from errno value.
int GetNumCores()
Return the number of cores available on the current system.
int64_t GetTimeMillis()
Returns the system time (not mockable)
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
NodeClock::time_point GetAdjustedTime()
static const int64_t DEFAULT_MAX_TIME_ADJUSTMENT
CService DefaultOnionServiceTarget()
const std::string DEFAULT_TOR_CONTROL
Default control port.
void InterruptTorControl()
void StartTorControl(CService onion_service_target)
static const bool DEFAULT_LISTEN_ONION
bilingual_str _(const char *psz)
Translation function.
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
util::Result< void > CheckLegacyTxindex(CBlockTreeDB &block_tree_db)
static constexpr int64_t MAX_DB_CACHE_MB
max. -dbcache (MiB)
static constexpr int64_t MIN_DB_CACHE_MB
min. -dbcache (MiB)
static constexpr int64_t DEFAULT_DB_BATCH_SIZE
-dbbatchsize default (bytes)
static constexpr int64_t DEFAULT_DB_CACHE_MB
-dbcache default (MiB)
std::unique_ptr< TxIndex > g_txindex
The global transaction index, used in GetTransaction. May be null.
static constexpr bool DEFAULT_TXINDEX
CClientUIInterface uiInterface
void InitWarning(const bilingual_str &str)
Show warning message.
bool InitError(const bilingual_str &str)
Show error message.
std::string SanitizeString(std::string_view str, int rule)
Remove unsafe chars.
void StartScriptCheckWorkerThreads(int threads_num)
Run instances of script checking worker threads.
std::condition_variable g_best_block_cv
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...
void StopScriptCheckWorkerThreads()
Stop all of the script checking worker threads.
const std::vector< std::string > CHECKLEVEL_DOC
Documentation for argument 'checklevel'.
static constexpr int DEFAULT_CHECKLEVEL
static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES
Require that user allocate at least 550 MiB for block & undo files (blk???.dat and rev?...
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 int MAX_SCRIPTCHECK_THREADS
Maximum number of dedicated script-checking threads allowed.
SynchronizationState
Current sync state passed to tip changed callbacks.
static const int DEFAULT_SCRIPTCHECK_THREADS
-par default (number of script-checking threads, 0 = auto)
static const signed int DEFAULT_CHECKBLOCKS
static const bool DEFAULT_PEERBLOOMFILTERS
static const int DEFAULT_STOPATHEIGHT
Default for -stopatheight.
CMainSignals & GetMainSignals()
void UnregisterAllValidationInterfaces()
Unregister all subscribers.
void UnregisterValidationInterface(CValidationInterface *callbacks)
Unregister subscriber.
void RegisterValidationInterface(CValidationInterface *callbacks)
Register subscriber.
static constexpr uint32_t AVALANCHE_VOTE_STALE_FACTOR
Scaling factor applied to confidence to determine staleness threshold.
static constexpr uint32_t AVALANCHE_VOTE_STALE_THRESHOLD
Number of votes before a record may be considered as stale.
const WalletInitInterface & g_wallet_init_interface
std::unique_ptr< CZMQNotificationInterface > g_zmq_notification_interface
void RegisterZMQRPCCommands(CRPCTable &t)