aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorstolen data <[email protected]>2015-06-19 17:29:43 +0200
committerRoss Nicoll <[email protected]>2015-08-11 19:30:15 +0000
commit5bbb60100380554ef140562f906a090b432cbdb3 (patch)
treee4a4c4b56f4c3ee6e207dded5d448c8f7d7c1ee6 /src/init.cpp
parentAdd block height to block notification substitution options (diff)
downloaddiscoin-5bbb60100380554ef140562f906a090b432cbdb3.tar.xz
discoin-5bbb60100380554ef140562f906a090b432cbdb3.zip
advertise block height addition to -blocknotify
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 94a08ee8b..21a566848 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -270,7 +270,7 @@ std::string HelpMessage(HelpMessageMode mode)
strUsage += HelpMessageOpt("-?", _("This help message"));
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)"));
+ strUsage += HelpMessageOpt("-blocknotify=<cmd>", _("Execute command when the best block changes (%s in cmd is replaced by block hash, %i is replaced by block number)"));
strUsage += HelpMessageOpt("-checkblocks=<n>", strprintf(_("How many blocks to check at startup (default: %u, 0 = all)"), 288));
strUsage += HelpMessageOpt("-checklevel=<n>", strprintf(_("How thorough the block verification of -checkblocks is (0-4, default: %u)"), 3));
strUsage += HelpMessageOpt("-conf=<file>", strprintf(_("Specify configuration file (default: %s)"), "bitcoin.conf"));