diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index ede7701900..eec511acec 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -580,7 +580,7 @@ func (p *BlobPool) Init(gasTip uint64, head *types.Header, reserver txpool.Reser } else if legacy { fails = append(fails, id) tx := new(types.Transaction) - if err := rlp.DecodeBytes(blob, tx); err != nil { + if err := rlp.DecodeBytes(blob, tx); err == nil { convertTxs = append(convertTxs, tx) } }