From 49a7c24743c7df3239fa267e2d01de62adfae21c Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Fri, 10 Oct 2025 14:07:45 +0800 Subject: [PATCH] eth/protocols/eth: revert error msg change --- 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 afe77df0c6..94b2a6bd66 100644 --- a/eth/protocols/eth/handlers.go +++ b/eth/protocols/eth/handlers.go @@ -502,7 +502,7 @@ func handleTransactions(backend Backend, msg Decoder, peer *Peer) error { for i, tx := range txs { // Validate and mark the remote transaction if tx == nil { - return fmt.Errorf("transactions: transaction %d is nil", i) + return fmt.Errorf("Transactions: transaction %d is nil", i) } hash := tx.Hash() if _, exists := seen[hash]; exists {