diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-07-18 12:01:11 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-07-18 12:05:47 +0200 |
| commit | 03c56f62c2fd4da2bdd48df106dc62de72234e3f (patch) | |
| tree | 6fd107f7a412b1983e737ff6e69f41877e6c0c57 /src/init.cpp | |
| parent | Merge #8320: Fix 0.12 release notes on block relaying (diff) | |
| parent | mining: Improve `-blockmaxcost` help message (diff) | |
| download | discoin-03c56f62c2fd4da2bdd48df106dc62de72234e3f.tar.xz discoin-03c56f62c2fd4da2bdd48df106dc62de72234e3f.zip | |
Merge #8359: mining: Improve `-blockmaxcost` help message
8cef5bd mining: Improve `-blockmaxcost` help message (Wladimir J. van der Laan)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index d127ecd48..509bc45f5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -452,7 +452,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-mempoolreplacement", strprintf(_("Enable transaction replacement in the memory pool (default: %u)"), DEFAULT_ENABLE_REPLACEMENT)); strUsage += HelpMessageGroup(_("Block creation options:")); - strUsage += HelpMessageOpt("-blockmaxcost=<n>", strprintf(_("Set maximum block cost (default: %d)"), DEFAULT_BLOCK_MAX_COST)); + strUsage += HelpMessageOpt("-blockmaxcost=<n>", strprintf(_("Set maximum BIP141 block cost (default: %d)"), DEFAULT_BLOCK_MAX_COST)); strUsage += HelpMessageOpt("-blockmaxsize=<n>", strprintf(_("Set maximum block size in bytes (default: %d)"), DEFAULT_BLOCK_MAX_SIZE)); strUsage += HelpMessageOpt("-blockprioritysize=<n>", strprintf(_("Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), DEFAULT_BLOCK_PRIORITY_SIZE)); if (showDebug) |