File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -566,17 +566,17 @@ func (c *ChainConfig) IsShanghai(num *big.Int, time uint64) bool {
566
566
return c .IsLondon (num ) && isTimestampForked (c .ShanghaiTime , time )
567
567
}
568
568
569
- // IsCancun returns whether num is either equal to the Cancun fork time or greater.
569
+ // IsCancun returns whether time is either equal to the Cancun fork time or greater.
570
570
func (c * ChainConfig ) IsCancun (num * big.Int , time uint64 ) bool {
571
571
return c .IsLondon (num ) && isTimestampForked (c .CancunTime , time )
572
572
}
573
573
574
- // IsPrague returns whether num is either equal to the Prague fork time or greater.
574
+ // IsPrague returns whether time is either equal to the Prague fork time or greater.
575
575
func (c * ChainConfig ) IsPrague (num * big.Int , time uint64 ) bool {
576
576
return c .IsLondon (num ) && isTimestampForked (c .PragueTime , time )
577
577
}
578
578
579
- // IsVerkle returns whether num is either equal to the Verkle fork time or greater.
579
+ // IsVerkle returns whether time is either equal to the Verkle fork time or greater.
580
580
func (c * ChainConfig ) IsVerkle (num * big.Int , time uint64 ) bool {
581
581
return c .IsLondon (num ) && isTimestampForked (c .VerkleTime , time )
582
582
}
You can’t perform that action at this time.
0 commit comments