diff options
| author | MarcoFalke <[email protected]> | 2018-02-04 14:26:17 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-02-04 14:26:27 -0500 |
| commit | d32528e733f2711b34dbc41fbb2bb0f153bf7e9a (patch) | |
| tree | 392f733ef539ee357a00846a178a5447584eabbe /src/chainparamsbase.cpp | |
| parent | Merge #12317: Document method for reviewers to verify chainTxData (diff) | |
| parent | Properly alphabetize output of CLI --help option. (diff) | |
| download | discoin-d32528e733f2711b34dbc41fbb2bb0f153bf7e9a.tar.xz discoin-d32528e733f2711b34dbc41fbb2bb0f153bf7e9a.zip | |
Merge #12331: Docs: Properly alphabetize output of CLI --help option.
d3e467520f Properly alphabetize output of CLI --help option. (murrayn)
Pull request description:
The --help output of bitcoind, bitcoin-cli, bitcoin-tx, qt/bitcoin-qt, et al. is only about 90% alphabetized by option, which is kind of sloppy and occasionally misleading. This change (mostly) organizes the output alphabetically.
Tree-SHA512: 3029900dbe99f03397c1cbdb5e4ac09a13bc99bafe73c6855097206e4cdd9ad70d0b5cedb5e1e520005c3e9ef1c4cd32bb9d8c98ce6918d8434fec8bf06e56c8
Diffstat (limited to 'src/chainparamsbase.cpp')
| -rw-r--r-- | src/chainparamsbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chainparamsbase.cpp b/src/chainparamsbase.cpp index a03137f40..89dd8549b 100644 --- a/src/chainparamsbase.cpp +++ b/src/chainparamsbase.cpp @@ -17,11 +17,11 @@ const std::string CBaseChainParams::REGTEST = "regtest"; void AppendParamsHelpMessages(std::string& strUsage, bool debugHelp) { strUsage += HelpMessageGroup(_("Chain selection options:")); - strUsage += HelpMessageOpt("-testnet", _("Use the test chain")); if (debugHelp) { strUsage += HelpMessageOpt("-regtest", "Enter regression test mode, which uses a special chain in which blocks can be solved instantly. " "This is intended for regression testing tools and app development."); } + strUsage += HelpMessageOpt("-testnet", _("Use the test chain")); } /** |