From 30832e2ba4715b77cd23dc67e323d3d3973a9cfa Mon Sep 17 00:00:00 2001 From: lightclient Date: Thu, 4 Sep 2025 11:18:57 -0600 Subject: [PATCH] core/txpool/blobpool: remove check for version byte in normal slotter operation --- core/txpool/blobpool/blobpool.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index 0a35e04903..5f4deb833e 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -436,10 +436,6 @@ func (p *BlobPool) Init(gasTip uint64, head *types.Header, reserver txpool.Reser // Index all transactions on disk and delete anything unprocessable var fails []uint64 index := func(id uint64, size uint32, blob []byte) { - if len(blob) == 1 { - // Skip version blob if found. - return - } if p.parseTransaction(id, size, blob) != nil { fails = append(fails, id) }