Skip to content

Commit ebb2a43

Browse files
committed
core/txpool/blobpool: remove check for version byte in normal slotter operation
1 parent 11c9da3 commit ebb2a43

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

core/txpool/blobpool/blobpool.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,10 +436,6 @@ func (p *BlobPool) Init(gasTip uint64, head *types.Header, reserver txpool.Reser
436436
// Index all transactions on disk and delete anything unprocessable
437437
var fails []uint64
438438
index := func(id uint64, size uint32, blob []byte) {
439-
if len(blob) == 1 {
440-
// Skip version blob if found.
441-
return
442-
}
443439
if p.parseTransaction(id, size, blob) != nil {
444440
fails = append(fails, id)
445441
}

0 commit comments

Comments
 (0)