* This removes block-size-limiting code in favor of GBT clients
doing the limiting themselves (if at all).
* -blockmaxsize is deprecated and only used to calculate an implied
blockmaxweight, addressing confusion from multiple users.
* getmininginfo's currentblocksize return value was returning
garbage values, and has been removed, also removing a
GetSerializeSize call in some block generation inner loops and
potentially addressing some performance edge cases.
strUsage+=HelpMessageOpt("-blockmaxweight=<n>",strprintf(_("Set maximum BIP141 block weight (default: %d)"),DEFAULT_BLOCK_MAX_WEIGHT));
strUsage+=HelpMessageOpt("-blockmaxsize=<n>",strprintf(_("Set maximum block size in bytes (default: %d)"),DEFAULT_BLOCK_MAX_SIZE));
strUsage+=HelpMessageOpt("-blockmaxsize=<n>", _("Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight"));
strUsage+=HelpMessageOpt("-blockmintxfee=<amt>",strprintf(_("Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s)"),CURRENCY_UNIT,FormatMoney(DEFAULT_BLOCK_MIN_TX_FEE)));
if(showDebug)
strUsage+=HelpMessageOpt("-blockversion=<n>","Override block version to test forking scenarios");