Documentation ¶
Overview ¶
Package features defines which features are enabled for runtime in order to selectively enable certain features to maintain a stable runtime.
The process for implementing new features using this package is as follows:
- Add a new CMD flag in flags.go, and place it in the proper list(s) var for its client.
- Add a condition for the flag in the proper Configure function(s) below.
- Place any "new" behavior in the `if flagEnabled` statement.
- Place any "previous" behavior in the `else` statement.
- Ensure any tests using the new feature fail if the flag isn't enabled. 5a. Use the following to enable your flag for tests: cfg := &featureconfig.Flags{ VerifyAttestationSigs: true, } resetCfg := featureconfig.InitWithReset(cfg) defer resetCfg()
- Add the string for the flags that should be running within E2E to E2EValidatorFlags and E2EBeaconChainFlags.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // PyrmontTestnet flag for the multiclient Ethereum consensus testnet. PyrmontTestnet = &cli.BoolFlag{ Name: "pyrmont", Usage: "This defines the flag through which we can run on the Pyrmont Multiclient Testnet", } // PraterTestnet flag for the multiclient Ethereum consensus testnet. PraterTestnet = &cli.BoolFlag{ Name: "prater", Usage: "Run Prysm configured for the Prater test network", } // Mainnet flag for easier tooling, no-op Mainnet = &cli.BoolFlag{ Value: true, Name: "mainnet", Usage: "Run on Ethereum Beacon Chain Main Net. This is the default and can be omitted.", } )
var BeaconChainFlags = append(deprecatedFlags, []cli.Flag{ devModeFlag, writeSSZStateTransitionsFlag, disableGRPCConnectionLogging, attestationAggregationStrategy, PyrmontTestnet, PraterTestnet, Mainnet, enablePeerScorer, enableLargerGossipHistory, checkPtInfoCache, disableBroadcastSlashingFlag, disableNextSlotStateCache, forceOptMaxCoverAggregationStategy, enableSlasherFlag, disableProposerAttsSelectionUsingMaxCover, disableOptimizedBalanceUpdate, enableHistoricalSpaceRepresentation, disableCorrectlyInsertOrphanedAtts, enableGetBlockOptimizations, disableCorrectlyPruneCanonicalAtts, disableActiveBalanceCache, enableBatchGossipVerification, }...)
BeaconChainFlags contains a list of all the feature flags that apply to the beacon-chain client.
var E2EBeaconChainFlags = []string{
"--attestation-aggregation-strategy=opt_max_cover",
"--dev",
"--use-check-point-cache",
"--enable-active-balance-cache",
}
E2EBeaconChainFlags contains a list of the beacon chain feature flags to be tested in E2E.
var E2EValidatorFlags = []string{
"--enable-doppelganger",
}
E2EValidatorFlags contains a list of the validator feature flags to be tested in E2E.
var ValidatorFlags = append(deprecatedFlags, []cli.Flag{ writeWalletPasswordOnWebOnboarding, enableExternalSlasherProtectionFlag, disableAttestingHistoryDBCache, PyrmontTestnet, PraterTestnet, Mainnet, dynamicKeyReloadDebounceInterval, attestTimely, enableSlashingProtectionPruning, enableDoppelGangerProtection, }...)
ValidatorFlags contains a list of all the feature flags that apply to the validator client.
Functions ¶
func ActiveFlags ¶
func ActiveFlags(flags []cli.Flag) []cli.Flag
ActiveFlags returns all of the flags that are not Hidden.
func ConfigureBeaconChain ¶
func ConfigureBeaconChain(ctx *cli.Context)
ConfigureBeaconChain sets the global config based on what flags are enabled for the beacon-chain client.
func ConfigureValidator ¶
func ConfigureValidator(ctx *cli.Context)
ConfigureValidator sets the global config based on what flags are enabled for the validator client.
func InitWithReset ¶
func InitWithReset(c *Flags) func()
InitWithReset sets the global config and returns function that is used to reset configuration.
Types ¶
type Flags ¶
type Flags struct { // Testnet Flags. PyrmontTestnet bool // PyrmontTestnet defines the flag through which we can enable the node to run on the Pyrmont testnet. // Feature related flags. RemoteSlasherProtection bool // RemoteSlasherProtection utilizes a beacon node with --slasher mode for validator slashing protection. WriteSSZStateTransitions bool // WriteSSZStateTransitions to tmp directory. SkipBLSVerify bool // Skips BLS verification across the runtime. EnablePeerScorer bool // EnablePeerScorer enables experimental peer scoring in p2p. EnableLargerGossipHistory bool // EnableLargerGossipHistory increases the gossip history we store in our caches. WriteWalletPasswordOnWebOnboarding bool // WriteWalletPasswordOnWebOnboarding writes the password to disk after Prysm web signup. DisableAttestingHistoryDBCache bool // DisableAttestingHistoryDBCache for the validator client increases disk reads/writes. ProposerAttsSelectionUsingMaxCover bool // ProposerAttsSelectionUsingMaxCover enables max-cover algorithm when selecting attestations for proposing. EnableOptimizedBalanceUpdate bool // EnableOptimizedBalanceUpdate uses an updated method of performing balance updates. EnableDoppelGanger bool // EnableDoppelGanger enables doppelganger protection on startup for the validator. EnableHistoricalSpaceRepresentation bool // EnableHistoricalSpaceRepresentation enables the saving of registry validators in separate buckets to save space EnableGetBlockOptimizations bool // EnableGetBlockOptimizations optimizes some elements of the GetBlock() function. EnableBatchVerification bool // EnableBatchVerification enables batch signature verification on gossip messages. // Logging related toggles. DisableGRPCConnectionLogs bool // Disables logging when a new grpc client has connected. // Slasher toggles. DisableLookback bool // DisableLookback updates slasher to not use the lookback and update validator histories until epoch 0. DisableBroadcastSlashings bool // DisableBroadcastSlashings disables p2p broadcasting of proposer and attester slashings. // Cache toggles. EnableSSZCache bool // EnableSSZCache see https://github.com/prysmaticlabs/prysm/v2/pull/4558. EnableNextSlotStateCache bool // EnableNextSlotStateCache enables next slot state cache to improve validator performance. EnableActiveBalanceCache bool // EnableActiveBalanceCache enables active balance cache. // Bug fixes related flags. AttestTimely bool // AttestTimely fixes #8185. It is gated behind a flag to ensure beacon node's fix can safely roll out first. We'll invert this in v1.1.0. EnableSlasher bool // Enable slasher in the beacon node runtime. // EnableSlashingProtectionPruning for the validator client. EnableSlashingProtectionPruning bool // Bug fixes related flags. CorrectlyInsertOrphanedAtts bool CorrectlyPruneCanonicalAtts bool // KeystoreImportDebounceInterval specifies the time duration the validator waits to reload new keys if they have // changed on disk. This feature is for advanced use cases only. KeystoreImportDebounceInterval time.Duration AttestationAggregationStrategy string // AttestationAggregationStrategy defines aggregation strategy to be used when aggregating. }
Flags is a struct to represent which features the client will perform on runtime.