prysm-pulse/testing/endtoend/policies/policies.go
Raul Jordan 5230af0e0c
Move EndtoEnd Tests to Testing/ Folder (#9586)
* endtoend to testing/

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-15 14:42:05 +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
}
}