@@ -586,9 +586,15 @@ func defaultMock(httpMock HTTPMock, httpServer *http.Server, clock clockwork.Clo
586586 ProposerDutiesFunc : func (context.Context , eth2p0.Epoch , []eth2p0.ValidatorIndex ) ([]* eth2v1.ProposerDuty , error ) {
587587 return []* eth2v1.ProposerDuty {}, nil
588588 },
589+ CachedProposerDutiesFunc : func (context.Context , eth2p0.Epoch ) ([]* eth2v1.ProposerDuty , error ) {
590+ return []* eth2v1.ProposerDuty {}, nil
591+ },
589592 AttesterDutiesFunc : func (context.Context , eth2p0.Epoch , []eth2p0.ValidatorIndex ) ([]* eth2v1.AttesterDuty , error ) {
590593 return []* eth2v1.AttesterDuty {}, nil
591594 },
595+ CachedAttesterDutiesFunc : func (context.Context , eth2p0.Epoch ) ([]* eth2v1.AttesterDuty , error ) {
596+ return []* eth2v1.AttesterDuty {}, nil
597+ },
592598 BeaconBlockAttestationsFunc : func (context.Context , * eth2api.BeaconBlockAttestationsOpts ) ([]* eth2spec.VersionedAttestation , error ) {
593599 return []* eth2spec.VersionedAttestation {}, nil
594600 },
@@ -686,6 +692,9 @@ func defaultMock(httpMock HTTPMock, httpServer *http.Server, clock clockwork.Clo
686692 SyncCommitteeDutiesFunc : func (context.Context , eth2p0.Epoch , []eth2p0.ValidatorIndex ) ([]* eth2v1.SyncCommitteeDuty , error ) {
687693 return []* eth2v1.SyncCommitteeDuty {}, nil
688694 },
695+ CachedSyncDutiesFunc : func (context.Context , eth2p0.Epoch ) ([]* eth2v1.SyncCommitteeDuty , error ) {
696+ return []* eth2v1.SyncCommitteeDuty {}, nil
697+ },
689698 SyncCommitteeSelectionsFunc : func (_ context.Context , opts * eth2api.SyncCommitteeSelectionsOpts ) ([]* eth2v1.SyncCommitteeSelection , error ) {
690699 return opts .Selections , nil
691700 },
0 commit comments