| 252 | bool getReindex() override { return node::fReindex; } |
| 253 | bool getImporting() override { return node::fImporting; } |
| 254 | void setNetworkActive(bool active) override |
| 255 | { |
| 256 | if (m_context->connman) { |
| 257 | m_context->connman->SetNetworkActive(active); |
| 258 | } |
| 259 | } |
| 260 | bool getNetworkActive() override { return m_context->connman && m_context->connman->GetNetworkActive(); } |
| 261 | CFeeRate getDustRelayFee() override { return ::dustRelayFee; } |
| 262 | UniValue executeRpc(const std::string& command, const UniValue& params, const std::string& uri) override |
nothing calls this directly
no test coverage detected