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 {