From 295d3ca485196069d4893b86c97c96926eae0b11 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Mon, 13 Oct 2025 18:27:28 +0200 Subject: [PATCH] eth/protocols/eth: fix comment Signed-off-by: Csaba Kiraly --- eth/protocols/eth/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/eth/handlers.go b/eth/protocols/eth/handlers.go index 71e18dcbfa..aad3353d88 100644 --- a/eth/protocols/eth/handlers.go +++ b/eth/protocols/eth/handlers.go @@ -521,7 +521,7 @@ func handlePooledTransactions(backend Backend, msg Decoder, peer *Peer) error { if err := msg.Decode(&txs); err != nil { return err } - // Deduplicate transactions within the message to avoid redundant processing + // Duplicate transactions are not allowed seen := make(map[common.Hash]struct{}) for i, tx := range txs.PooledTransactionsResponse { // Validate and mark the remote transaction