Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pcw109550 committed May 27, 2024
1 parent af09fd0 commit b145e0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions erigon-lib/txpool/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ func (p *TxPool) isRegolith() bool {
}
regolithTime := *p.regolithTime

// a zero here means Cancun is always active
// a zero here means Regolith is always active
if regolithTime == 0 {
p.isPostRegolith.Swap(true)
return true
Expand All @@ -1201,7 +1201,7 @@ func (p *TxPool) isCanyon() bool {
}
canyonTime := *p.canyonTime

// a zero here means Cancun is always active
// a zero here means Canyon is always active
if canyonTime == 0 {
p.isPostCanyon.Swap(true)
return true
Expand All @@ -1226,7 +1226,7 @@ func (p *TxPool) isEcotone() bool {
}
ecotoneTime := *p.ecotoneTime

// a zero here means Cancun is always active
// a zero here means Ecotone is always active
if ecotoneTime == 0 {
p.isPostEcotone.Swap(true)
return true
Expand All @@ -1251,7 +1251,7 @@ func (p *TxPool) isFjord() bool {
}
fjordTime := *p.fjordTime

// a zero here means Cancun is always active
// a zero here means Fjord is always active
if fjordTime == 0 {
p.isPostFjord.Swap(true)
return true
Expand Down

0 comments on commit b145e0a

Please sign in to comment.