Update config.go

This commit is contained in:
jagdeep sidhu 2024-10-10 12:56:13 -07:00
parent 447776765c
commit 55f01f4ff2

View file

@ -993,7 +993,8 @@ func (c *ChainConfig) Rules(num *big.Int, isMerge bool, timestamp uint64) Rules
IsEIP2929: c.IsBerlin(num) && !isVerkle, IsEIP2929: c.IsBerlin(num) && !isVerkle,
IsLondon: c.IsLondon(num), IsLondon: c.IsLondon(num),
IsMerge: isMerge, IsMerge: isMerge,
IsShanghai: isMerge && c.IsShanghai(num, timestamp), // SYSCOIN
IsShanghai: c.IsShanghai(num, timestamp),
IsCancun: isMerge && c.IsCancun(num, timestamp), IsCancun: isMerge && c.IsCancun(num, timestamp),
IsPrague: isMerge && c.IsPrague(num, timestamp), IsPrague: isMerge && c.IsPrague(num, timestamp),
IsVerkle: isVerkle, IsVerkle: isVerkle,