getNode returns the peer with the id
(id uint64)
| 374 | |
| 375 | //getNode returns the peer with the id |
| 376 | func (this *P2PServer) getNode(id uint64) *peer.Peer { |
| 377 | return this.network.GetPeer(id) |
| 378 | } |
| 379 | |
| 380 | //retryInactivePeer try to connect peer in INACTIVITY state |
| 381 | func (this *P2PServer) retryInactivePeer() { |
no test coverage detected