mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
20 lines
571 B
Go
20 lines
571 B
Go
|
package featureconfig
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// VerifyAttestationSigsFlag determines whether to verify signatures for attestations.
|
||
|
VerifyAttestationSigsFlag = cli.BoolFlag{
|
||
|
Name: "enable-attestation-signature-verification",
|
||
|
Usage: "Verify signatures for attestations.",
|
||
|
}
|
||
|
)
|
||
|
|
||
|
// ValidatorFlags contains a list of all the feature flags that apply to the validator client.
|
||
|
var ValidatorFlags = []cli.Flag{}
|
||
|
|
||
|
// BeaconChainFlags contains a list of all the feature flags that apply to the beacon-chain client.
|
||
|
var BeaconChainFlags = []cli.Flag{}
|