4757c04 [config] Remove blockmaxsize option (John Newbery)
Pull request description:
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.
Fixes#12640
cc @ajtowns
Tree-SHA512: 968d71d37bf175c5a02539ddec289a12586f886e1dfe64c1d9aa5e39db48d06d21665153824fac3b11503a55f0812d2f1115a2d726aafd37b76ed629ec0aa671
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)));