|
|
@@ -71,6 +71,8 @@ static const bool DEFAULT_REST_ENABLE = false; |
|
|
|
static const bool DEFAULT_DISABLE_SAFEMODE = false; |
|
|
|
static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false; |
|
|
|
|
|
|
|
static const char * const DEFAULT_WALLET_DAT = "wallet.dat"; |
|
|
|
|
|
|
|
#if ENABLE_ZMQ |
|
|
|
static CZMQNotificationInterface* pzmqNotificationInterface = NULL; |
|
|
|
#endif |
|
|
@@ -366,9 +368,9 @@ std::string HelpMessage(HelpMessageMode mode) |
|
|
|
strUsage += HelpMessageOpt("-onion=<ip:port>", strprintf(_("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s)"), "-proxy")); |
|
|
|
strUsage += HelpMessageOpt("-onlynet=<net>", _("Only connect to nodes in network <net> (ipv4, ipv6 or onion)")); |
|
|
|
strUsage += HelpMessageOpt("-permitbaremultisig", strprintf(_("Relay non-P2SH multisig (default: %u)"), DEFAULT_PERMIT_BAREMULTISIG)); |
|
|
|
strUsage += HelpMessageOpt("-peerbloomfilters", strprintf(_("Support filtering of blocks and transaction with bloom filters (default: %u)"), 1)); |
|
|
|
strUsage += HelpMessageOpt("-peerbloomfilters", strprintf(_("Support filtering of blocks and transaction with bloom filters (default: %u)"), DEFAULT_PEERBLOOMFILTERS)); |
|
|
|
if (showDebug) |
|
|
|
strUsage += HelpMessageOpt("-enforcenodebloom", strprintf("Enforce minimum protocol version to limit use of bloom filters (default: %u)", 0)); |
|
|
|
strUsage += HelpMessageOpt("-enforcenodebloom", strprintf("Enforce minimum protocol version to limit use of bloom filters (default: %u)", DEFAULT_ENFORCENODEBLOOM)); |
|
|
|
strUsage += HelpMessageOpt("-port=<port>", strprintf(_("Listen for connections on <port> (default: %u or testnet: %u)"), Params(CBaseChainParams::MAIN).GetDefaultPort(), Params(CBaseChainParams::TESTNET).GetDefaultPort())); |
|
|
|
strUsage += HelpMessageOpt("-proxy=<ip:port>", _("Connect through SOCKS5 proxy")); |
|
|
|
strUsage += HelpMessageOpt("-proxyrandomize", strprintf(_("Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u)"), DEFAULT_PROXYRANDOMIZE)); |
|
|
@@ -405,7 +407,7 @@ std::string HelpMessage(HelpMessageMode mode) |
|
|
|
strUsage += HelpMessageOpt("-maxtxfee=<amt>", strprintf(_("Maximum total fees (in %s) to use in a single wallet transaction; setting this too low may abort large transactions (default: %s)"), |
|
|
|
CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MAXFEE))); |
|
|
|
strUsage += HelpMessageOpt("-upgradewallet", _("Upgrade wallet to latest format on startup")); |
|
|
|
strUsage += HelpMessageOpt("-wallet=<file>", _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), "wallet.dat")); |
|
|
|
strUsage += HelpMessageOpt("-wallet=<file>", _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), DEFAULT_WALLET_DAT)); |
|
|
|
strUsage += HelpMessageOpt("-walletbroadcast", _("Make the wallet broadcast transactions") + " " + strprintf(_("(default: %u)"), DEFAULT_WALLETBROADCAST)); |
|
|
|
strUsage += HelpMessageOpt("-walletnotify=<cmd>", _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)")); |
|
|
|
strUsage += HelpMessageOpt("-zapwallettxes=<mode>", _("Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup") + |
|
|
@@ -979,7 +981,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) |
|
|
|
bSpendZeroConfChange = GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE); |
|
|
|
fSendFreeTransactions = GetBoolArg("-sendfreetransactions", DEFAULT_SEND_FREE_TRANSACTIONS); |
|
|
|
|
|
|
|
std::string strWalletFile = GetArg("-wallet", "wallet.dat"); |
|
|
|
std::string strWalletFile = GetArg("-wallet", DEFAULT_WALLET_DAT); |
|
|
|
#endif // ENABLE_WALLET |
|
|
|
|
|
|
|
fIsBareMultisigStd = GetBoolArg("-permitbaremultisig", DEFAULT_PERMIT_BAREMULTISIG); |
|
|
@@ -991,7 +993,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) |
|
|
|
// Option to startup with mocktime set (used for regression testing): |
|
|
|
SetMockTime(GetArg("-mocktime", 0)); // SetMockTime(0) is a no-op |
|
|
|
|
|
|
|
if (GetBoolArg("-peerbloomfilters", true)) |
|
|
|
if (GetBoolArg("-peerbloomfilters", DEFAULT_PEERBLOOMFILTERS)) |
|
|
|
nLocalServices |= NODE_BLOOM; |
|
|
|
|
|
|
|
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log |