mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package mock
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
type MockSlashingChecker struct {
|
|
AttesterSlashingFound bool
|
|
ProposerSlashingFound bool
|
|
HighestAtts map[primitives.ValidatorIndex]*ethpb.HighestAttestation
|
|
}
|
|
|
|
func (s *MockSlashingChecker) HighestAttestations(
|
|
_ context.Context, indices []primitives.ValidatorIndex,
|
|
) ([]*ethpb.HighestAttestation, error) {
|
|
atts := make([]*ethpb.HighestAttestation, 0, len(indices))
|
|
for _, valIdx := range indices {
|
|
att, ok := s.HighestAtts[valIdx]
|
|
if !ok {
|
|
continue
|
|
}
|
|
atts = append(atts, att)
|
|
}
|
|
return atts, nil
|
|
}
|
|
|
|
func (s *MockSlashingChecker) IsSlashableBlock(_ context.Context, _ *ethpb.SignedBeaconBlockHeader) (*ethpb.ProposerSlashing, error) {
|
|
if s.ProposerSlashingFound {
|
|
return ðpb.ProposerSlashing{
|
|
Header_1: ðpb.SignedBeaconBlockHeader{
|
|
Header: ðpb.BeaconBlockHeader{
|
|
Slot: 0,
|
|
ProposerIndex: 0,
|
|
ParentRoot: params.BeaconConfig().ZeroHash[:],
|
|
StateRoot: params.BeaconConfig().ZeroHash[:],
|
|
BodyRoot: params.BeaconConfig().ZeroHash[:],
|
|
},
|
|
Signature: params.BeaconConfig().EmptySignature[:],
|
|
},
|
|
Header_2: ðpb.SignedBeaconBlockHeader{
|
|
Header: ðpb.BeaconBlockHeader{
|
|
Slot: 0,
|
|
ProposerIndex: 0,
|
|
ParentRoot: params.BeaconConfig().ZeroHash[:],
|
|
StateRoot: params.BeaconConfig().ZeroHash[:],
|
|
BodyRoot: params.BeaconConfig().ZeroHash[:],
|
|
},
|
|
Signature: params.BeaconConfig().EmptySignature[:],
|
|
},
|
|
}, nil
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
func (s *MockSlashingChecker) IsSlashableAttestation(_ context.Context, _ *ethpb.IndexedAttestation) ([]*ethpb.AttesterSlashing, error) {
|
|
if s.AttesterSlashingFound {
|
|
return []*ethpb.AttesterSlashing{
|
|
{
|
|
Attestation_1: ðpb.IndexedAttestation{
|
|
Data: ðpb.AttestationData{},
|
|
},
|
|
Attestation_2: ðpb.IndexedAttestation{
|
|
Data: ðpb.AttestationData{},
|
|
},
|
|
},
|
|
}, nil
|
|
}
|
|
return nil, nil
|
|
}
|