2019-09-09 21:13:50 +00:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Operations defines a mock for the operations service.
|
|
|
|
type Operations struct {
|
|
|
|
Attestations []*ethpb.Attestation
|
|
|
|
}
|
|
|
|
|
|
|
|
// AttestationPool --
|
|
|
|
func (op *Operations) AttestationPool(ctx context.Context, requestedSlot uint64) ([]*ethpb.Attestation, error) {
|
|
|
|
return op.Attestations, nil
|
|
|
|
}
|
|
|
|
|
2019-09-23 18:01:57 +00:00
|
|
|
// AttestationPoolNoVerify --
|
|
|
|
func (op *Operations) AttestationPoolNoVerify(ctx context.Context) ([]*ethpb.Attestation, error) {
|
|
|
|
return op.Attestations, nil
|
|
|
|
}
|
|
|
|
|
2019-11-18 17:19:03 +00:00
|
|
|
// AttestationPoolForForkchoice --
|
|
|
|
func (op *Operations) AttestationPoolForForkchoice(ctx context.Context) ([]*ethpb.Attestation, error) {
|
|
|
|
return op.Attestations, nil
|
|
|
|
}
|
|
|
|
|
2019-09-09 21:13:50 +00:00
|
|
|
// HandleAttestation --
|
|
|
|
func (op *Operations) HandleAttestation(context.Context, proto.Message) error {
|
|
|
|
return nil
|
|
|
|
}
|