| 677 | return std::make_unique<RpcHandlerImpl>(command); |
| 678 | } |
| 679 | bool rpcEnableDeprecated(const std::string& method) override { return IsDeprecatedRPCEnabled(method); } |
| 680 | void rpcRunLater(const std::string& name, std::function<void()> fn, int64_t seconds) override |
| 681 | { |
| 682 | RPCRunLater(name, std::move(fn), seconds); |
no test coverage detected