prysm-pulse/testing/endtoend/policies/policies.go
Raul Jordan 84916672c6
Remove Eth2-Types Dependency in Prysm (#10578)
* 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>
2022-04-29 10:32:11 -04:00

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
}
}