From b145e0a09aa5f85e2b89897720fff71cdfedfb7c Mon Sep 17 00:00:00 2001 From: pcw109550 Date: Mon, 27 May 2024 16:49:04 +0900 Subject: [PATCH] fix comment --- erigon-lib/txpool/pool.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erigon-lib/txpool/pool.go b/erigon-lib/txpool/pool.go index 45f4fa60e83..d5b3d793773 100644 --- a/erigon-lib/txpool/pool.go +++ b/erigon-lib/txpool/pool.go @@ -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 @@ -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 @@ -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 @@ -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