aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/misc.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-04-06 00:21:33 +0800
committerMarcoFalke <falke.marco@gmail.com>2020-04-06 00:20:00 +0800
commitfa1a92224dd78de817d15bcda35a8310254e1a54 (patch)
treefdd68fce9512d84fc87b37f909be99a700fe8d88 /src/rpc/misc.cpp
parent483007749426a1f51ea591eaac383f19fdde9efb (diff)
downloadbitcoin-fa1a92224dd78de817d15bcda35a8310254e1a54.tar.xz
rpc: Avoid initialization-order-fiasco on static CRPCCommand tables
Diffstat (limited to 'src/rpc/misc.cpp')
-rw-r--r--src/rpc/misc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp
index c87c1a5418..51a9581349 100644
--- a/src/rpc/misc.cpp
+++ b/src/rpc/misc.cpp
@@ -589,6 +589,8 @@ static UniValue echo(const JSONRPCRequest& request)
return request.params;
}
+void RegisterMiscRPCCommands(CRPCTable &t)
+{
// clang-format off
static const CRPCCommand commands[] =
{ // category name actor (function) argNames
@@ -610,8 +612,6 @@ static const CRPCCommand commands[] =
};
// clang-format on
-void RegisterMiscRPCCommands(CRPCTable &t)
-{
for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++)
t.appendCommand(commands[vcidx].name, &commands[vcidx]);
}