style: Remove whitespace

Can be reviewed via --ignore-all-space
This commit is contained in:
MarcoFalke 2021-11-12 12:10:47 +01:00
parent f2074eeb2d
commit fab0d998f4
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -535,7 +535,8 @@ static std::string GetAllOutputTypes()
static RPCHelpMan decodescript()
{
return RPCHelpMan{"decodescript",
return RPCHelpMan{
"decodescript",
"\nDecode a hex-encoded script.\n",
{
{"hexstring", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "the hex-encoded script"},
@ -555,7 +556,7 @@ static RPCHelpMan decodescript()
{RPCResult::Type::STR, "address", /* optional */ true, "The Bitcoin address (only if a well-defined address exists)"},
{RPCResult::Type::STR, "p2sh-segwit", "address of the P2SH script wrapping this witness redeem script"},
}},
}
},
},
RPCExamples{
HelpExampleCli("decodescript", "\"hexstring\"")