mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
236a5c4167
* ds cleanup * fix Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
74 lines
2.0 KiB
Go
74 lines
2.0 KiB
Go
package slasher
|
|
|
|
import (
|
|
"context"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
type MockSlashingChecker struct {
|
|
AttesterSlashingFound bool
|
|
ProposerSlashingFound bool
|
|
HighestAtts map[types.ValidatorIndex]*ethpb.HighestAttestation
|
|
}
|
|
|
|
func (s *MockSlashingChecker) HighestAttestations(
|
|
_ context.Context, indices []types.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
|
|
}
|