NoopService is a trivial implementation of the Service interface.
| 11 | |
| 12 | // NoopService is a trivial implementation of the Service interface. |
| 13 | type NoopService struct{} |
| 14 | |
| 15 | func (s *NoopService) Protocols() []p2p.Protocol { return nil } |
| 16 | func (s *NoopService) APIs() []rpc.API { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected