| 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 | { |