| 470 | } |
| 471 | |
| 472 | static bool ExecuteCommands(const std::vector<const CRPCCommand*>& commands, const JSONRPCRequest& request, UniValue& result) |
| 473 | { |
| 474 | for (const auto& command : commands) { |
| 475 | if (ExecuteCommand(*command, request, result, &command == &commands.back())) { |
| 476 | return true; |
| 477 | } |
| 478 | } |
| 479 | return false; |
| 480 | } |
| 481 | |
| 482 | UniValue CRPCTable::execute(const JSONRPCRequest &request) const |
| 483 | { |
no test coverage detected