mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 21:26:42 +00:00
core/txpool/blobpool: remove check for version byte in normal slotter operation
This commit is contained in:
parent
0a061be6a0
commit
30832e2ba4
1 changed files with 0 additions and 4 deletions
|
|
@ -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
|
// Index all transactions on disk and delete anything unprocessable
|
||||||
var fails []uint64
|
var fails []uint64
|
||||||
index := func(id uint64, size uint32, blob []byte) {
|
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 {
|
if p.parseTransaction(id, size, blob) != nil {
|
||||||
fails = append(fails, id)
|
fails = append(fails, id)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue