aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/external_signer.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-04-24 16:44:35 +0200
committerMarcoFalke <falke.marco@gmail.com>2022-04-25 10:55:07 +0200
commitfa870e3d4ccd6dfd0a9a8f2c608721a7251114e2 (patch)
treeb952412be2a96f5e7f8e4cb501efe833284c3212 /src/rpc/external_signer.cpp
parentb1c5991eebb916755be188f355ad36fe01a3f529 (diff)
downloadbitcoin-fa870e3d4ccd6dfd0a9a8f2c608721a7251114e2.tar.xz
Remove not needed clang-format off comments
Can be reviewed with --word-diff-regex=. --ignore-all-space
Diffstat (limited to 'src/rpc/external_signer.cpp')
-rw-r--r--src/rpc/external_signer.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/rpc/external_signer.cpp b/src/rpc/external_signer.cpp
index 82aa6f9516..4de7fc4205 100644
--- a/src/rpc/external_signer.cpp
+++ b/src/rpc/external_signer.cpp
@@ -62,15 +62,11 @@ static RPCHelpMan enumeratesigners()
};
}
-void RegisterSignerRPCCommands(CRPCTable &t)
+void RegisterSignerRPCCommands(CRPCTable& t)
{
-// clang-format off
-static const CRPCCommand commands[] =
-{ // category actor (function)
- // --------------------- ------------------------
- { "signer", &enumeratesigners, },
-};
-// clang-format on
+ static const CRPCCommand commands[]{
+ {"signer", &enumeratesigners},
+ };
for (const auto& c : commands) {
t.appendCommand(c.name, &c);
}