From 4eac682e03d35c129ca7699447323840955a6314 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Wed, 19 Feb 2025 15:48:31 -0800 Subject: [PATCH] docs --- eth/handler_eth.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eth/handler_eth.go b/eth/handler_eth.go index 45f7c2c532..3475258c46 100644 --- a/eth/handler_eth.go +++ b/eth/handler_eth.go @@ -68,6 +68,9 @@ func (h *ethHandler) Handle(peer *eth.Peer, packet eth.Packet) error { return h.txFetcher.Enqueue(peer.ID(), *packet, false) case *eth.PooledTransactionsResponse: + // If we receive any blob transactions missing sidecars, or with + // sidecars that don't correspond to the versioned hashes reported + // in the header, disconnect from the sending peer. for _, tx := range *packet { if tx.Type() == types.BlobTxType { if tx.BlobTxSidecar() == nil {