sync params to mainnet

This commit is contained in:
jagdeep sidhu 2024-10-09 22:13:54 -07:00
parent 8bb0cc0ffc
commit 447776765c
2 changed files with 3 additions and 3 deletions

View file

@ -816,8 +816,8 @@ func (p *BlobPool) Reset(oldHead, newHead *types.Header) {
p.insertFeed.Send(core.NewTxsEvent{Txs: adds})
}
}
// Flush out any blobs from limbo that are older than the latest finality
if p.chain.Config().IsCancun(p.head.Number, p.head.Time) {
// SYSCOIN Flush out any blobs from limbo that are older than the latest finality
if !p.chain.Config().IsSyscoin(p.head.Number) && 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

View file

@ -86,7 +86,7 @@ var (
TerminalTotalDifficulty: big.NewInt(1),
TerminalTotalDifficultyPassed: true,
ShanghaiTime: newUint64(1679618404),
CancunTime: newUint64(1679618404),
//CancunTime: newUint64(1679618404),
Ethash: nil,
}
TanenbaumChainConfig = &ChainConfig{