diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index 27441ac2e2..88abda791f 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1478,15 +1478,12 @@ func (p *BlobPool) AvailableBlobs(vhashes []common.Hash) int { func (p *BlobPool) Add(txs []*types.Transaction, sync bool) []error { var ( errs = make([]error, len(txs)) - adds = make([]*types.Transaction, 0, len(txs)) ) for i, tx := range txs { if errs[i] = p.ValidateTxBasics(tx); errs[i] != nil { continue } - if errs[i] = p.add(tx); errs[i] == nil { - adds = append(adds, tx.WithoutBlobTxSidecar()) - } + errs[i] = p.add(tx) } return errs }