mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
c0ee781638
Co-authored-by: Radosław Kapka <rkapka@wp.pl>
26 lines
793 B
Go
26 lines
793 B
Go
package grpc_api
|
|
|
|
import (
|
|
"context"
|
|
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/validator/client/iface"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type grpcSlasherClient struct {
|
|
slasherClient ethpb.SlasherClient
|
|
}
|
|
|
|
func (c *grpcSlasherClient) IsSlashableAttestation(ctx context.Context, in *ethpb.IndexedAttestation) (*ethpb.AttesterSlashingResponse, error) {
|
|
return c.slasherClient.IsSlashableAttestation(ctx, in)
|
|
}
|
|
|
|
func (c *grpcSlasherClient) IsSlashableBlock(ctx context.Context, in *ethpb.SignedBeaconBlockHeader) (*ethpb.ProposerSlashingResponse, error) {
|
|
return c.slasherClient.IsSlashableBlock(ctx, in)
|
|
}
|
|
|
|
func NewSlasherClient(cc grpc.ClientConnInterface) iface.SlasherClient {
|
|
return &grpcSlasherClient{ethpb.NewSlasherClient(cc)}
|
|
}
|