fix: build: an epoch is near an upgrade iff the upgrade is enabled (#11401)

This isn't a huge deal, but we'd otherwise consider the first finality
epochs (or so) to be "near" any disabled upgrade.
This commit is contained in:
Steven Allen 2023-11-29 16:50:05 +04:00 committed by GitHub
parent a34cc5e4e9
commit 8fec6e31f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,5 +5,8 @@ import (
)
func IsNearUpgrade(epoch, upgradeEpoch abi.ChainEpoch) bool {
if upgradeEpoch < 0 {
return false
}
return epoch > upgradeEpoch-Finality && epoch < upgradeEpoch+Finality
}