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

Method executeRpc

src/node/interfaces.cpp:359–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357 return m_context->mempool->m_opts.dust_relay_feerate;
358 }
359 UniValue executeRpc(const std::string& command, const UniValue& params, const std::string& uri) override
360 {
361 JSONRPCRequest req;
362 req.context = m_context;
363 req.params = params;
364 req.strMethod = command;
365 req.URI = uri;
366 return ::tableRPC.execute(req);
367 }
368 std::vector<std::string> listRpcCommands() override { return ::tableRPC.listCommands(); }
369 std::optional<Coin> getUnspentOutput(const COutPoint& output) override
370 {

Callers

nothing calls this directly

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected