()
| 30 | var cfg *config.P2PConfig |
| 31 | |
| 32 | func init() { |
| 33 | cfg = config.DefaultP2PConfig() |
| 34 | cfg.PexReactor = true |
| 35 | cfg.AllowDuplicateIP = true |
| 36 | } |
| 37 | |
| 38 | type PeerMessage struct { |
| 39 | Contents proto.Message |
nothing calls this directly
no test coverage detected