2022-03-14 20:58:13 +00:00
|
|
|
//go:build fuzz
|
2022-01-20 04:51:02 +00:00
|
|
|
// +build fuzz
|
2021-08-05 17:44:13 +00:00
|
|
|
|
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state"
|
2022-04-29 14:32:11 +00:00
|
|
|
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
2021-08-05 17:44:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FakeSyncCommitteeCache is a fake `SyncCommitteeCache` to satisfy fuzzing.
|
|
|
|
type FakeSyncCommitteeCache struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSyncCommittee initializes and returns a new SyncCommitteeCache.
|
|
|
|
func NewSyncCommittee() *FakeSyncCommitteeCache {
|
|
|
|
return &FakeSyncCommitteeCache{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CurrentEpochIndexPosition -- fake.
|
|
|
|
func (s *FakeSyncCommitteeCache) CurrentPeriodIndexPosition(root [32]byte, valIdx types.ValidatorIndex) ([]types.CommitteeIndex, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NextEpochIndexPosition -- fake.
|
|
|
|
func (s *FakeSyncCommitteeCache) NextPeriodIndexPosition(root [32]byte, valIdx types.ValidatorIndex) ([]types.CommitteeIndex, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatePositionsInCommittee -- fake.
|
|
|
|
func (s *FakeSyncCommitteeCache) UpdatePositionsInCommittee(syncCommitteeBoundaryRoot [32]byte, state state.BeaconStateAltair) error {
|
|
|
|
return nil
|
|
|
|
}
|