mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
84916672c6
* replace eth2 types * replace protos * regen proto * replace * gaz * deps * amend * regen proto * mod * gaz * gaz * ensure build * ssz * add dep * no more eth2 types * no more eth2 * remg * all builds * buidl * tidy * clean * fmt * val serv * gaz Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
30 lines
851 B
Go
30 lines
851 B
Go
package policies
|
|
|
|
import types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
|
|
|
// 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
|
|
}
|
|
}
|