mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
af46fc7707
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
17 lines
587 B
Go
17 lines
587 B
Go
package slashingprotection
|
|
|
|
import (
|
|
"context"
|
|
|
|
eth "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
)
|
|
|
|
// Protector interface defines the methods of the service that provides slashing protection.
|
|
type Protector interface {
|
|
CheckAttestationSafety(ctx context.Context, attestation *eth.IndexedAttestation) bool
|
|
CommitAttestation(ctx context.Context, attestation *eth.IndexedAttestation) bool
|
|
CheckBlockSafety(ctx context.Context, blockHeader *eth.BeaconBlockHeader) bool
|
|
CommitBlock(ctx context.Context, blockHeader *eth.SignedBeaconBlockHeader) (bool, error)
|
|
Status() error
|
|
}
|