diff options
| author | Gavin Andresen <[email protected]> | 2012-01-12 06:31:25 -0800 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-01-12 06:31:25 -0800 |
| commit | 3f64fa1369bde45034e451c4093e0852e59a1cdf (patch) | |
| tree | 2660c3cdcb6153cacf7524e13dc46dd0564b5b4f /src/init.cpp | |
| parent | Merge pull request #649 from sipa/comprpubkey (diff) | |
| parent | -blocknotify=command argument, implemented using system() and boost::thread (diff) | |
| download | discoin-3f64fa1369bde45034e451c4093e0852e59a1cdf.tar.xz discoin-3f64fa1369bde45034e451c4093e0852e59a1cdf.zip | |
Merge pull request #743 from gavinandresen/blocknotify
-blocknotify : run a command when best-block changes
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 7c3344897..e01516eb3 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -227,6 +227,7 @@ bool AppInit2(int argc, char* argv[]) " -rpcport=<port> \t\t " + _("Listen for JSON-RPC connections on <port> (default: 8332)") + "\n" + " -rpcallowip=<ip> \t\t " + _("Allow JSON-RPC connections from specified IP address") + "\n" + " -rpcconnect=<ip> \t " + _("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" + " -keypool=<n> \t " + _("Set key pool size to <n> (default: 100)") + "\n" + " -rescan \t " + _("Rescan the block chain for missing wallet transactions") + "\n"; |