Remove -alerts option

This commit is contained in:
BtcDrak
2016-03-06 11:15:20 +00:00
committed by lateminer
parent 7de932ba87
commit 8fb8ada384
3 changed files with 0 additions and 6 deletions

View File

@@ -297,7 +297,6 @@ std::string HelpMessage(HelpMessageMode mode)
string strUsage = HelpMessageGroup(_("Options:"));
strUsage += HelpMessageOpt("-?", _("This help message"));
strUsage += HelpMessageOpt("-version", _("Print version and exit"));
strUsage += HelpMessageOpt("-alerts", strprintf(_("Receive and display P2P network alerts (default: %u)"), DEFAULT_ALERTS));
strUsage += HelpMessageOpt("-alertnotify=<cmd>", _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)"));
strUsage += HelpMessageOpt("-blocknotify=<cmd>", _("Execute command when the best block changes (%s in cmd is replaced by block hash)"));
if (showDebug)
@@ -965,7 +964,6 @@ bool AppInit2(Config& config, boost::thread_group& threadGroup, CScheduler& sche
fAcceptDatacarrier = GetBoolArg("-datacarrier", DEFAULT_ACCEPT_DATACARRIER);
nMaxDatacarrierBytes = GetArg("-datacarriersize", nMaxDatacarrierBytes);
fAlerts = GetBoolArg("-alerts", DEFAULT_ALERTS);
fBIP37 = GetArg("-bip37", false);
// Option to startup with mocktime set (used for regression testing):