diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-26 17:31:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-26 17:31:12 +0200 |
| commit | 236ae8665efadf7b4456c0a9fbf204a5cb4ce9f4 (patch) | |
| tree | 7bdb5593dabb61f87322af48abc01caa465a93d6 /src/init.cpp | |
| parent | Merge pull request #4392 (diff) | |
| parent | Add an option to allow users to disable relaying/mining data carrier transact... (diff) | |
| download | discoin-236ae8665efadf7b4456c0a9fbf204a5cb4ce9f4.tar.xz discoin-236ae8665efadf7b4456c0a9fbf204a5cb4ce9f4.zip | |
Merge pull request #3715
e44fea5 Add an option to allow users to disable relaying/mining data carrier transactions (Luke Dashjr)
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 a03629d07..c7170b0f2 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -309,6 +309,8 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n"; strUsage += " -testnet " + _("Use the test network") + "\n"; + strUsage += "\n" + _("Node relay options:") + "\n"; + strUsage += " -datacarrier " + _("Relay and mine data carrier transactions (default: 1)") + "\n"; strUsage += "\n" + _("Block creation options:") + "\n"; strUsage += " -blockminsize=<n> " + _("Set minimum block size in bytes (default: 0)") + "\n"; strUsage += " -blockmaxsize=<n> " + strprintf(_("Set maximum block size in bytes (default: %d)"), DEFAULT_BLOCK_MAX_SIZE) + "\n"; |