mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
17169e5a2d
* slasher grpc client * do not export * slasher on a different package * fix featureconfig * change to rough time * revert roughtime * remove extra comma * revert order change * goimports * fix comments and tests * fix package name * revert reorder * comment for start * service * fix visibility * external slasher validator protection implementation * gaz * fix comment * add comments * nishant feedback * raul feedback * preston feedback * fix flags * fix imports * fix imports * port 4002 * added tests * fix log * fix imports * fix imports name * raul feedback * gaz * terence comment * change name * runtime fixes * add flag check Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
14 lines
395 B
Go
14 lines
395 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 {
|
|
VerifyAttestation(ctx context.Context, attestation *eth.IndexedAttestation) bool
|
|
VerifyBlock(ctx context.Context, blockHeader *eth.SignedBeaconBlockHeader) bool
|
|
}
|