mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
b577869ed6
* Fixes import aliases * another fix * reset gw files Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
30 lines
829 B
Go
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
|
|
}
|
|
}
|