From fa89ca9b5bd334813fd7e7edb202c56b35076e8d Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Wed, 15 Jul 2020 21:29:41 +0200 Subject: refactor: Use C++11 range based for loops to simplify rpc code --- src/rpc/mining.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/rpc/mining.cpp') diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index fee6a893e..c357d6f5b 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -1200,7 +1200,7 @@ static const CRPCCommand commands[] = { "hidden", "estimaterawfee", &estimaterawfee, {"conf_target", "threshold"} }, }; // clang-format on - - for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++) - t.appendCommand(commands[vcidx].name, &commands[vcidx]); + for (const auto& c : commands) { + t.appendCommand(c.name, &c); + } } -- cgit v1.2.3