mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
e90358cd8e
* Removed unused mocks * Lint * Gaz
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package testing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
|
)
|
|
|
|
// 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
|
|
}
|
|
|
|
// AttestationPoolNoVerify --
|
|
func (op *Operations) AttestationPoolNoVerify(ctx context.Context) ([]*ethpb.Attestation, error) {
|
|
return op.Attestations, nil
|
|
}
|
|
|
|
// AttestationPoolForForkchoice --
|
|
func (op *Operations) AttestationPoolForForkchoice(ctx context.Context) ([]*ethpb.Attestation, error) {
|
|
return op.Attestations, nil
|
|
}
|
|
|
|
// HandleAttestation --
|
|
func (op *Operations) HandleAttestation(context.Context, proto.Message) error {
|
|
return nil
|
|
}
|
|
|
|
// AttestationsBySlotCommittee --
|
|
func (op *Operations) AttestationsBySlotCommittee(ctx context.Context, slot uint64, index uint64) ([]*ethpb.Attestation, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// IncomingProcessedBlockFeed --
|
|
func (op *Operations) IncomingProcessedBlockFeed() *event.Feed {
|
|
return new(event.Feed)
|
|
}
|
|
|
|
// IncomingAttFeed --
|
|
func (op *Operations) IncomingAttFeed() *event.Feed {
|
|
return nil
|
|
}
|