diff options
| author | Gavin Andresen <[email protected]> | 2013-03-19 14:08:21 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-03-19 15:16:30 -0400 |
| commit | e5f163a041d5a45ea72448e11cfc30abb16f10b6 (patch) | |
| tree | 9cf3a9a396bac00f28466421393deb19db8ab372 /src/init.cpp | |
| parent | Some unit tests for CAlert (diff) | |
| download | discoin-e5f163a041d5a45ea72448e11cfc30abb16f10b6.tar.xz discoin-e5f163a041d5a45ea72448e11cfc30abb16f10b6.zip | |
-alertnotify=<cmd>
Runs a shell command when an AppliesToMe() alert is received.
%s in the <cmd> string is replaced with the alert.strStatusBar
message.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 5b8436651..b61d1b935 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -301,6 +301,7 @@ std::string HelpMessage() " -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" + " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" + " -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" + + " -alertnotify=<cmd> " + _("Execute command when a relevant alert is received (%s in cmd is replaced by message)") + "\n" + " -upgradewallet " + _("Upgrade wallet to latest format") + "\n" + " -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" + " -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n" + |