From 6620b7a00bc29ebeb43c1ebfcd52ee01d4fc2c34 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Mon, 13 Jul 2020 19:30:18 +0200 Subject: [PATCH] more comment fixes --- libp2p/protocols/pubsub/gossipsub.nim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libp2p/protocols/pubsub/gossipsub.nim b/libp2p/protocols/pubsub/gossipsub.nim index 8bf6b9b44..75655a6dd 100644 --- a/libp2p/protocols/pubsub/gossipsub.nim +++ b/libp2p/protocols/pubsub/gossipsub.nim @@ -510,9 +510,7 @@ method publish*(g: GossipSub, msg = Message.init(g.peerInfo, data, topic, g.sign) msgId = g.msgIdProvider(msg) - # trace "created new message", msg - - trace "publishing on topic", name = topic, peers = peers + trace "publishing on topic", name = topic, peers = peers, msg if msgId notin g.mcache: g.mcache.put(msgId, msg)