()
| 265 | } |
| 266 | |
| 267 | func (n *Node) stopRPC() { |
| 268 | n.stopWS() |
| 269 | n.stopInProc() |
| 270 | n.stopIPC() |
| 271 | n.stopHTTP() |
| 272 | } |
| 273 | |
| 274 | // startInProc initializes an in-process RPC endpoint. |
| 275 | func (n *Node) startInProc(apis []rpc.API) error { |
no test coverage detected