diff --git a/servers/src/grin/seed.rs b/servers/src/grin/seed.rs index dd6f2d134..456d0e8b1 100644 --- a/servers/src/grin/seed.rs +++ b/servers/src/grin/seed.rs @@ -311,7 +311,7 @@ fn listen_for_addrs( let addrs: Vec = rx.try_iter().collect(); // If we have a healthy number of outbound peers then we are done here. - if peers.healthy_peers_mix() { + if peers.peer_count() > peers.peer_outbound_count() && peers.healthy_peers_mix() { return; }