| 177 | return false; |
| 178 | } |
| 179 | bool disconnectById(NodeId id) override |
| 180 | { |
| 181 | if (m_context->connman) { |
| 182 | return m_context->connman->DisconnectNode(id); |
| 183 | } |
| 184 | return false; |
| 185 | } |
| 186 | std::vector<std::unique_ptr<interfaces::ExternalSigner>> listExternalSigners() override |
| 187 | { |
| 188 | #ifdef ENABLE_EXTERNAL_SIGNER |
no test coverage detected