mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
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
|
||
|
}
|