2020-02-14 04:20:45 +00:00
|
|
|
package beacon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
2020-03-12 20:29:23 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
2020-02-15 18:57:49 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/sliceutil"
|
2020-02-14 04:20:45 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SubmitProposerSlashing receives a proposer slashing object via
|
|
|
|
// RPC and injects it into the beacon node's operations pool.
|
|
|
|
// Submission into this pool does not guarantee inclusion into a beacon block.
|
|
|
|
func (bs *Server) SubmitProposerSlashing(
|
|
|
|
ctx context.Context,
|
|
|
|
req *ethpb.ProposerSlashing,
|
|
|
|
) (*ethpb.SubmitSlashingResponse, error) {
|
|
|
|
beaconState, err := bs.HeadFetcher.HeadState(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "Could not retrieve head state: %v", err)
|
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
if err := bs.SlashingsPool.InsertProposerSlashing(ctx, beaconState, req); err != nil {
|
2020-02-14 04:20:45 +00:00
|
|
|
return nil, status.Errorf(codes.Internal, "Could not insert proposer slashing into pool: %v", err)
|
|
|
|
}
|
2020-05-22 17:19:45 +00:00
|
|
|
if !featureconfig.Get().DisableBroadcastSlashings {
|
2020-04-13 04:11:09 +00:00
|
|
|
if err := bs.Broadcaster.Broadcast(ctx, req); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-03-12 20:29:23 +00:00
|
|
|
}
|
2020-02-14 04:20:45 +00:00
|
|
|
return ðpb.SubmitSlashingResponse{
|
2020-04-14 20:27:03 +00:00
|
|
|
SlashedIndices: []uint64{req.Header_1.Header.ProposerIndex},
|
2020-02-14 04:20:45 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SubmitAttesterSlashing receives an attester slashing object via
|
|
|
|
// RPC and injects it into the beacon node's operations pool.
|
|
|
|
// Submission into this pool does not guarantee inclusion into a beacon block.
|
|
|
|
func (bs *Server) SubmitAttesterSlashing(
|
|
|
|
ctx context.Context,
|
|
|
|
req *ethpb.AttesterSlashing,
|
|
|
|
) (*ethpb.SubmitSlashingResponse, error) {
|
|
|
|
beaconState, err := bs.HeadFetcher.HeadState(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "Could not retrieve head state: %v", err)
|
|
|
|
}
|
2020-03-12 01:16:55 +00:00
|
|
|
if err := bs.SlashingsPool.InsertAttesterSlashing(ctx, beaconState, req); err != nil {
|
2020-02-14 04:20:45 +00:00
|
|
|
return nil, status.Errorf(codes.Internal, "Could not insert attester slashing into pool: %v", err)
|
|
|
|
}
|
2020-05-22 17:19:45 +00:00
|
|
|
if !featureconfig.Get().DisableBroadcastSlashings {
|
2020-04-13 04:11:09 +00:00
|
|
|
if err := bs.Broadcaster.Broadcast(ctx, req); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-03-12 20:29:23 +00:00
|
|
|
}
|
2020-02-14 04:20:45 +00:00
|
|
|
slashedIndices := sliceutil.IntersectionUint64(req.Attestation_1.AttestingIndices, req.Attestation_2.AttestingIndices)
|
|
|
|
return ðpb.SubmitSlashingResponse{
|
|
|
|
SlashedIndices: slashedIndices,
|
|
|
|
}, nil
|
|
|
|
}
|