diff options
| author | Chris Moore <[email protected]> | 2014-02-06 12:11:42 -0800 |
|---|---|---|
| committer | Chris Moore <[email protected]> | 2014-02-06 12:11:42 -0800 |
| commit | 10e652f3197a2cd789d30c17893cd4d65e4be76b (patch) | |
| tree | ac8150b43b98d810bd83b69ccf186b6871999652 /src/init.cpp | |
| parent | Allow a fixed list of change addresses. (diff) | |
| download | discoin-10e652f3197a2cd789d30c17893cd4d65e4be76b.tar.xz discoin-10e652f3197a2cd789d30c17893cd4d65e4be76b.zip | |
Document the -change option.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index f9185ba9d..ebf73f0b0 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,3 +1,4 @@ + // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2013-2014 Dogecoin Developers @@ -312,6 +313,7 @@ std::string HelpMessage() " -maxconnections=<n> " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" + " -addnode=<ip> " + _("Add a node to connect to and attempt to keep the connection open") + "\n" + " -connect=<ip> " + _("Connect only to the specified node(s)") + "\n" + + " -change=<address> " + _("Send change only to the specified address(es)") + "\n" + " -seednode=<ip> " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" + " -externalip=<ip> " + _("Specify your own public address") + "\n" + " -onlynet=<net> " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" + |