diff options
| author | kjj2 <[email protected]> | 2012-11-03 09:58:41 -0500 |
|---|---|---|
| committer | kjj2 <[email protected]> | 2012-11-03 10:07:57 -0500 |
| commit | cae686d31e18a68826ef61931ae8379fe9461d7b (patch) | |
| tree | 4615748a180ad35155eeb01d5577dc35a2dcf924 /src/init.cpp | |
| parent | Merge branch 'testdata' of git://github.com/TheBlueMatt/bitcoin (diff) | |
| download | discoin-cae686d31e18a68826ef61931ae8379fe9461d7b.tar.xz discoin-cae686d31e18a68826ef61931ae8379fe9461d7b.zip | |
Add -walletnotify to call an external script on wallet transactions
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 dc425da64..ec32b6209 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -276,6 +276,7 @@ std::string HelpMessage() " -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n" + " -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" + " -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" + |