diff --git a/internal/p2p/router.go b/internal/p2p/router.go index 1bfd014fc..81a8928a4 100644 --- a/internal/p2p/router.go +++ b/internal/p2p/router.go @@ -530,7 +530,7 @@ func (r *Router) routeChannel( func (r *Router) numConcurrentDials() int { if r.options.NumConcurrentDials == nil { - return runtime.NumCPU() + return runtime.NumCPU() * 32 } return r.options.NumConcurrentDials()