643@@ -644,7 +644,7 @@ void SetupServerArgs(ArgsManager& argsman, bool can_listen_ipc)
644 argsman.AddArg("-whitelistrelay", strprintf("Add 'relay' permission to whitelisted peers with default permissions. This will accept relayed transactions even when not relaying transactions (default: %d)", DEFAULT_WHITELISTRELAY), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY);
645
646
647- argsman.AddArg("-blockmaxweight=<n>", strprintf("Set maximum BIP141 block weight (default: %d)", DEFAULT_BLOCK_MAX_WEIGHT), ArgsManager::ALLOW_ANY, OptionsCategory::BLOCK_CREATION);
648+ argsman.AddArg("-blockmaxweight=<n>", strprintf("Set maximum BIP141 block weight (default: %d)", DEFAULT_BLOCK_MAX_WEIGHT), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::BLOCK_CREATION);
It seems this change ought to have a release note to explain why the option is no longer available by default and how to enable it.
The option is available by default and enabled.
It is just hidden in the help text.
Indeed, yes – but still ought to have a release note that it is now a hidden -help-debug option.
Yeah, I will mention when the notes are ready to be edited.
Thanks