From f7ae4902a2df17977fb987a8e5e323251f34c0e2 Mon Sep 17 00:00:00 2001 From: Tyler Sturos <55340199+tjsturos@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:56:40 -0900 Subject: [PATCH] update default count to 1 --- node/p2p/blossomsub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/p2p/blossomsub.go b/node/p2p/blossomsub.go index a1fcdfd..f387b99 100644 --- a/node/p2p/blossomsub.go +++ b/node/p2p/blossomsub.go @@ -890,7 +890,7 @@ func (b *BlossomSub) background(ctx context.Context) { func (b *BlossomSub) checkAndReconnectPeers(ctx context.Context) { peerCount := len(b.h.Network().Peers()) - if peerCount > 0 { + if peerCount > 1 { return }