diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-28 14:06:07 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-28 14:37:40 +0200 |
commit | aaa707693782a02ed8f5d057e4adf6ad4e1f38e9 (patch) | |
tree | b8619796100efc7ef81146ca69b2c11e1e5ed742 /src/init.cpp | |
parent | c5eabde9ea04f13f4e35b22452484e66ba9c3dcb (diff) | |
parent | ebdcc360b65816f7ad7cdedce6a1114d5e014b7b (diff) |
Merge pull request #4531
ebdcc36 Add helptexts for -whitelist and rpc prioritisetransaction and switch to bitcoin instead of satoshis (Cozz Lovan)
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 3488a8bedf..127529382f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -262,6 +262,7 @@ std::string HelpMessage(HelpMessageMode mode) #endif strUsage += " -whitebind=<addr> " + _("Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6") + "\n"; strUsage += " -whitelist=<netmask> " + _("Whitelist peers connecting from the given netmask or ip. Can be specified multiple times.") + "\n"; + strUsage += " " + _("Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway") + "\n"; #ifdef ENABLE_WALLET strUsage += "\n" + _("Wallet options:") + "\n"; |