From f6ad7099577fd96afc539bc1f4c61f42f2a8af4c Mon Sep 17 00:00:00 2001 From: Pavel Zbitskiy Date: Tue, 15 Jul 2025 14:14:07 -0400 Subject: [PATCH] network: do not use telemetry id for p2p nets --- network/p2pNetwork.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network/p2pNetwork.go b/network/p2pNetwork.go index 051cf2cbae..8401ad8ba8 100644 --- a/network/p2pNetwork.go +++ b/network/p2pNetwork.go @@ -791,12 +791,12 @@ func (n *P2PNetwork) OnNetworkAdvance() { // TelemetryGUID returns the telemetry GUID of this node. func (n *P2PNetwork) TelemetryGUID() string { - return n.log.GetTelemetryGUID() + return "" } // InstanceName returns the instance name of this node. func (n *P2PNetwork) InstanceName() string { - return n.log.GetInstanceName() + return "" } // GenesisID returns the genesis ID of this node.