312 | @@ -313,7 +313,7 @@ static RPCHelpMan addnode()
313 | {
314 | {"node", RPCArg::Type::STR, RPCArg::Optional::NO, "The address of the peer to connect to"},
315 | {"command", RPCArg::Type::STR, RPCArg::Optional::NO, "'add' to add a node to the list, 'remove' to remove a node from the list, 'onetry' to try a connection to the node once"},
316 | - {"v2transport", RPCArg::Type::BOOL, RPCArg::Default{false}, "Attempt to connect using BIP324 v2 transport protocol (ignored for 'remove' command)"},
317 | + {"v2transport", RPCArg::Type::BOOL, RPCArg::DefaultHint{"set by -v2transport"}, "Attempt to connect using BIP324 v2 transport protocol (ignored for 'remove' command)"},
Perhaps helpful to disambiguate the config option from this addnode option (beyond the - convention)
{"v2transport", RPCArg::Type::BOOL, RPCArg::DefaultHint{"set by -v2transport configuration option"}, "Attempt to connect using BIP324 v2 transport protocol (ignored for 'remove' command)"},
fwiw for the v2transport config option help
current
-v2transport
Support v2 transport (default: 0)
suggestion
-v2transport
Support BIP324 v2 transport (default: 0)
or
-v2transport
Support BIP324 v2 transport protocol (default: 0)