forked from cerc-io/plugeth
core/txpool/blobpool: remove error log when finalized block is nil (#27822)
* core/txpool/blobpool: remove error log when finalized block is nil * core/txpool/blobpool: take peter's suggestion
This commit is contained in:
parent
852be575e1
commit
2fd77a6a7e
@ -768,8 +768,9 @@ func (p *BlobPool) Reset(oldHead, newHead *types.Header) {
|
||||
}
|
||||
}
|
||||
// Flush out any blobs from limbo that are older than the latest finality
|
||||
p.limbo.finalize(p.chain.CurrentFinalBlock())
|
||||
|
||||
if p.chain.Config().IsCancun(p.head.Number, p.head.Time) {
|
||||
p.limbo.finalize(p.chain.CurrentFinalBlock())
|
||||
}
|
||||
// Reset the price heap for the new set of basefee/blobfee pairs
|
||||
var (
|
||||
basefee = uint256.MustFromBig(misc.CalcBaseFee(p.chain.Config(), newHead))
|
||||
|
Loading…
Reference in New Issue
Block a user