From f1cb954ca95e24a50a41f4061475ad242e07586e Mon Sep 17 00:00:00 2001 From: Black Swan Date: Tue, 16 Dec 2025 00:48:01 +0200 Subject: [PATCH] consider local p2p-circuit addr local-only --- 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 692134f..1a4bd82 100644 --- a/node/p2p/blossomsub.go +++ b/node/p2p/blossomsub.go @@ -1700,7 +1700,7 @@ func (b *BlossomSub) isLocalOnlyAddr(addr ma.Multiaddr) bool { if err != nil { ipComponent, err = addr.ValueForProtocol(ma.P_IP6) if err != nil { - return false + return addr.String() == "/p2p-circuit" } }