diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-04-06 00:21:33 +0800 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-04-06 00:20:00 +0800 |
commit | fa1a92224dd78de817d15bcda35a8310254e1a54 (patch) | |
tree | fdd68fce9512d84fc87b37f909be99a700fe8d88 /src/rpc/blockchain.cpp | |
parent | 483007749426a1f51ea591eaac383f19fdde9efb (diff) |
rpc: Avoid initialization-order-fiasco on static CRPCCommand tables
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r-- | src/rpc/blockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index c132f265d2..f71ed99652 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -2347,6 +2347,8 @@ UniValue dumptxoutset(const JSONRPCRequest& request) return result; } +void RegisterBlockchainRPCCommands(CRPCTable &t) +{ // clang-format off static const CRPCCommand commands[] = { // category name actor (function) argNames @@ -2387,8 +2389,6 @@ static const CRPCCommand commands[] = }; // clang-format on -void RegisterBlockchainRPCCommands(CRPCTable &t) -{ for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++) t.appendCommand(commands[vcidx].name, &commands[vcidx]); } |