core/txpool/blobpool: remove check for version byte in normal slotter operation

This commit is contained in:
lightclient 2025-09-04 11:18:57 -06:00
parent 0a061be6a0
commit 30832e2ba4
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -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)
}