MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / ExecuteCommands

Function ExecuteCommands

src/rpc/server.cpp:472–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

470}
471
472static 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
482UniValue CRPCTable::execute(const JSONRPCRequest &request) const
483{

Callers 2

executeMethod · 0.85
dumpArgMapMethod · 0.85

Calls 2

ExecuteCommandFunction · 0.85
backMethod · 0.45

Tested by

no test coverage detected