Skip to content

Commit 3b3805f

Browse files
committed
core/txpool/blobpool: remove check for version byte in normal slotter operation
1 parent 90502a0 commit 3b3805f

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
@@ -435,10 +435,6 @@ func (p *BlobPool) Init(gasTip uint64, head *types.Header, reserver txpool.Reser
435435
// Index all transactions on disk and delete anything unprocessable
436436
var fails []uint64
437437
index := func(id uint64, size uint32, blob []byte) {
438-
if len(blob) == 1 {
439-
// Skip version blob if found.
440-
return
441-
}
442438
if p.parseTransaction(id, size, blob) != nil {
443439
fails = append(fails, id)
444440
}

0 commit comments

Comments
 (0)