From fa7ff0433df46802ea40df2a4f76104ed349778f Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Sat, 1 Mar 2025 14:00:40 +0100 Subject: [PATCH] Update suite.go --- cmd/devp2p/internal/ethtest/suite.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/devp2p/internal/ethtest/suite.go b/cmd/devp2p/internal/ethtest/suite.go index f7395390c4..8ebbe2a05d 100644 --- a/cmd/devp2p/internal/ethtest/suite.go +++ b/cmd/devp2p/internal/ethtest/suite.go @@ -847,14 +847,14 @@ func mangleSidecar(tx *types.Transaction) *types.Transaction { } func (s *Suite) TestBlobTxWithoutSidecar(t *utesting.T) { - t.Log(`This test tests that a transaction first advertised/transmitted without a sidecar will result in the sending peer being disconnected, and the full transaction should be successfully retrieved from another peer.`) + t.Log(`This test checks that a blob transaction first advertised/transmitted without blobs will result in the sending peer being disconnected, and the full transaction should be successfully retrieved from another peer.`) tx := s.makeBlobTxs(1, 2, 42)[0] badTx := tx.WithoutBlobTxSidecar() s.testBadBlobTx(t, tx, badTx) } func (s *Suite) TestBlobTxWithMismatchedSidecar(t *utesting.T) { - t.Log(`This test tests that a transaction first advertised/transmitted with a sidecar whose commitment don't correspond to the blob_versioned_hashes in the transaction header will result in the sending peer being disconnected, and the full transaction should be successfully retrieved from another peer.`) + t.Log(`This test checks that a blob transaction first advertised/transmitted without blobs, whose commitment don't correspond to the blob_versioned_hashes in the transaction, will result in the sending peer being disconnected, and the full transaction should be successfully retrieved from another peer.`) tx := s.makeBlobTxs(1, 2, 43)[0] badTx := mangleSidecar(tx) s.testBadBlobTx(t, tx, badTx)