The blockmaxsize option was marked as deprecated in V0.15.1, and code
was added to convert provided blockmaxsize into blockmaxweight. However,
this code was incorrectly implemented, and blockmaxsize was silently
ignored.
No users have complained about blockmaxsize being ignored, so just
remove it in V0.17.
strUsage+=HelpMessageOpt("-whitelistrelay",strprintf(_("Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d)"),DEFAULT_WHITELISTRELAY));
strUsage+=HelpMessageOpt("-blockmaxsize=<n>","Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight");
strUsage+=HelpMessageOpt("-blockmaxweight=<n>",strprintf(_("Set maximum BIP141 block weight (default: %d)"),DEFAULT_BLOCK_MAX_WEIGHT));
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)));