mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 15:39:05 +01:00
Remove not needed clang-format off comments
Can be reviewed with --word-diff-regex=. --ignore-all-space
This commit is contained in:
@@ -1680,28 +1680,24 @@ static RPCHelpMan analyzepsbt()
|
||||
};
|
||||
}
|
||||
|
||||
void RegisterRawTransactionRPCCommands(CRPCTable &t)
|
||||
void RegisterRawTransactionRPCCommands(CRPCTable& t)
|
||||
{
|
||||
// clang-format off
|
||||
static const CRPCCommand commands[] =
|
||||
{ // category actor (function)
|
||||
// --------------------- -----------------------
|
||||
{ "rawtransactions", &getrawtransaction, },
|
||||
{ "rawtransactions", &createrawtransaction, },
|
||||
{ "rawtransactions", &decoderawtransaction, },
|
||||
{ "rawtransactions", &decodescript, },
|
||||
{ "rawtransactions", &combinerawtransaction, },
|
||||
{ "rawtransactions", &signrawtransactionwithkey, },
|
||||
{ "rawtransactions", &decodepsbt, },
|
||||
{ "rawtransactions", &combinepsbt, },
|
||||
{ "rawtransactions", &finalizepsbt, },
|
||||
{ "rawtransactions", &createpsbt, },
|
||||
{ "rawtransactions", &converttopsbt, },
|
||||
{ "rawtransactions", &utxoupdatepsbt, },
|
||||
{ "rawtransactions", &joinpsbts, },
|
||||
{ "rawtransactions", &analyzepsbt, },
|
||||
};
|
||||
// clang-format on
|
||||
static const CRPCCommand commands[]{
|
||||
{"rawtransactions", &getrawtransaction},
|
||||
{"rawtransactions", &createrawtransaction},
|
||||
{"rawtransactions", &decoderawtransaction},
|
||||
{"rawtransactions", &decodescript},
|
||||
{"rawtransactions", &combinerawtransaction},
|
||||
{"rawtransactions", &signrawtransactionwithkey},
|
||||
{"rawtransactions", &decodepsbt},
|
||||
{"rawtransactions", &combinepsbt},
|
||||
{"rawtransactions", &finalizepsbt},
|
||||
{"rawtransactions", &createpsbt},
|
||||
{"rawtransactions", &converttopsbt},
|
||||
{"rawtransactions", &utxoupdatepsbt},
|
||||
{"rawtransactions", &joinpsbts},
|
||||
{"rawtransactions", &analyzepsbt},
|
||||
};
|
||||
for (const auto& c : commands) {
|
||||
t.appendCommand(c.name, &c);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user