We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3038a commit 8ef32e8Copy full SHA for 8ef32e8
p2p/peer_tracker.go
@@ -67,7 +67,7 @@ func newPeerTracker(
67
func (p *peerTracker) bootstrap(ctx context.Context, trusted []libpeer.ID) error {
68
// store peers that have been already connected
69
for _, c := range p.host.Network().Conns() {
70
- p.connected(c.RemotePeer())
+ go p.connected(c.RemotePeer())
71
}
72
73
connectCtx, cancel := context.WithTimeout(context.Background(), time.Second*60)
0 commit comments