mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
79754bded2
* update ethereumapis deps * V1AttToV1Alpha1 migration * Implementation plus happy path test * fix root variable names * Invalid attestation test * gzl * mod tidy * use a single append to concatenate two slices * remove outdated comment from attestation processing * invoke ProcessAttestationNoVerifySignature when validating attestations * implement missing PoolMock members * use new VerifyAttestationNoVerifySignature function
28 lines
708 B
Go
28 lines
708 B
Go
package testing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
)
|
|
|
|
// MockBroadcaster implements p2p.Broadcaster for testing.
|
|
type MockBroadcaster struct {
|
|
BroadcastCalled bool
|
|
BroadcastMessages []proto.Message
|
|
}
|
|
|
|
// Broadcast records a broadcast occurred.
|
|
func (m *MockBroadcaster) Broadcast(_ context.Context, msg proto.Message) error {
|
|
m.BroadcastCalled = true
|
|
m.BroadcastMessages = append(m.BroadcastMessages, msg)
|
|
return nil
|
|
}
|
|
|
|
// BroadcastAttestation records a broadcast occurred.
|
|
func (m *MockBroadcaster) BroadcastAttestation(_ context.Context, _ uint64, _ *ethpb.Attestation) error {
|
|
m.BroadcastCalled = true
|
|
return nil
|
|
}
|