mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
df33ce3309
* slasher beacon node changes * remaining beacon node items * moar changes * gaz * flag fix * rem slashable * builds * imports * fix up * pruning faster test * deepsource * fix wrong item * node node feature flags * broken test * preston review * more preston comments * comment Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
388 B
Go
13 lines
388 B
Go
// Package slasher defines a gRPC server implementation of a slasher service
|
|
// which allows for checking if attestations or blocks are slashable.
|
|
package slasher
|
|
|
|
import (
|
|
slasherservice "github.com/prysmaticlabs/prysm/beacon-chain/slasher"
|
|
)
|
|
|
|
// Server defines a server implementation of the gRPC slasher service.
|
|
type Server struct {
|
|
SlashingChecker slasherservice.SlashingChecker
|
|
}
|