prysm-pulse/endtoend/policies/policies.go
Victor Farazdagi b577869ed6
Fixes import aliases (#8497)
* Fixes import aliases

* another fix

* reset gw files

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-02-22 23:20:57 +00:00

30 lines
829 B
Go

package policies
import types "github.com/prysmaticlabs/eth2-types"
// AfterNthEpoch runs for every epoch after the provided epoch.
func AfterNthEpoch(afterEpoch types.Epoch) func(epoch types.Epoch) bool {
return func(currentEpoch types.Epoch) bool {
return currentEpoch > afterEpoch
}
}
// AllEpochs runs for all epochs.
func AllEpochs(_ types.Epoch) bool {
return true
}
// OnEpoch runs only for the provided epoch.
func OnEpoch(epoch types.Epoch) func(types.Epoch) bool {
return func(currentEpoch types.Epoch) bool {
return currentEpoch == epoch
}
}
// BetweenEpochs runs for every epoch that is between the provided epochs.
func BetweenEpochs(fromEpoch, toEpoch types.Epoch) func(types.Epoch) bool {
return func(currentEpoch types.Epoch) bool {
return fromEpoch < currentEpoch && currentEpoch < toEpoch
}
}