mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
ca90acca77
* Create a feature flagging system * Refactor how featureflags works and improve docs * Gazelle and final touches * Refactor, new flags in the package * Remove old flags since they have been moved * Fix bazel * Update to comments * Full coverage * Fix formatting * Align code with numbers * Run bazel and fix docs * Fix test for flag
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{}
|