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 ( // Mainnet flag for easier tooling, no-op Mainnet = &cli.BoolFlag{ Value: true, Name: "mainnet", Usage: "Run on Zond Beacon Chain Main Net. This is the default and can be omitted.", } SaveFullExecutionPayloads = &cli.BoolFlag{ Name: "save-full-execution-payloads", Usage: "Saves beacon blocks with full execution payloads instead of execution payload headers in the database", } EnableBeaconRESTApi = &cli.BoolFlag{ Name: "enable-beacon-rest-api", Usage: "Experimental enable of the beacon REST API when querying a beacon node", } // DisableRegistrationCache a flag for disabling the validator registration cache and use db instead. DisableRegistrationCache = &cli.BoolFlag{ Name: "disable-registration-cache", Usage: "A temporary flag for disabling the validator registration cache instead of using the db. note: registrations do not clear on restart while using the db", } )
var BeaconChainFlags = append(deprecatedBeaconFlags, append(deprecatedFlags, []cli.Flag{ devModeFlag, enableExperimentalState, writeSSZStateTransitionsFlag, disableGRPCConnectionLogging, Mainnet, disablePeerScorer, disableBroadcastSlashingFlag, enableSlasherFlag, enableHistoricalSpaceRepresentation, disableStakinContractCheck, disableReorgLateBlocks, SaveFullExecutionPayloads, enableStartupOptimistic, enableFullSSZDataLogging, enableVerboseSigVerification, disableOptionalEngineMethods, prepareAllPayloads, aggregateFirstInterval, aggregateSecondInterval, aggregateThirdInterval, enableEIP4881, disableResourceManager, DisableRegistrationCache, disableAggregateParallel, }...)...)
BeaconChainFlags contains a list of all the feature flags that apply to the beacon-chain client.
var E2EBeaconChainFlags = []string{
"--dev",
}
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 NetworkFlags = []cli.Flag{ Mainnet, }
NetworkFlags contains a list of network flags.
var ValidatorFlags = append(deprecatedFlags, []cli.Flag{ Mainnet, dynamicKeyReloadDebounceInterval, attestTimely, enableSlashingProtectionPruning, enableDoppelGangerProtection, EnableBeaconRESTApi, }...)
ValidatorFlags contains a list of all the feature flags that apply to the validator client.
Functions ¶
func ActiveFlags ¶
ActiveFlags returns all of the flags that are not Hidden.
func ConfigureBeaconChain ¶
ConfigureBeaconChain sets the global config based on what flags are enabled for the beacon-chain client.
func ConfigureValidator ¶
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 {
// Feature related flags.
EnableExperimentalState bool // EnableExperimentalState turns on the latest and greatest (but potentially unstable) changes to the beacon state.
WriteSSZStateTransitions bool // WriteSSZStateTransitions to tmp directory.
EnablePeerScorer bool // EnablePeerScorer enables experimental peer scoring in p2p.
DisableReorgLateBlocks bool // DisableReorgLateBlocks disables reorgs of late blocks.
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
EnableBeaconRESTApi bool // EnableBeaconRESTApi enables experimental usage of the beacon REST API by the validator when querying a beacon node
// Logging related toggles.
DisableGRPCConnectionLogs bool // Disables logging when a new grpc client has connected.
EnableFullSSZDataLogging bool // Enables logging for full ssz data on rejected gossip messages
// Slasher toggles.
DisableBroadcastSlashings bool // DisableBroadcastSlashings disables p2p broadcasting of proposer and attester slashings.
// 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 bool // EnableSlashingProtectionPruning for the validator client.
SaveFullExecutionPayloads bool // Save full beacon blocks with execution payloads in the database.
EnableStartOptimistic bool // EnableStartOptimistic treats every block as optimistic at startup.
DisableResourceManager bool // Disables running the node with libp2p's resource manager.
DisableStakinContractCheck bool // Disables check for deposit contract when proposing blocks
EnableVerboseSigVerification bool // EnableVerboseSigVerification specifies whether to verify individual signature if batch verification fails
EnableOptionalEngineMethods bool // EnableOptionalEngineMethods specifies whether to activate capella specific engine methods
EnableEIP4881 bool // EnableEIP4881 specifies whether to use the deposit tree from EIP4881
PrepareAllPayloads bool // PrepareAllPayloads informs the engine to prepare a block on every slot.
AggregateParallel bool // AggregateParallel aggregates attestations in parallel.
// 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
// AggregateIntervals specifies the time durations at which we aggregate attestations preparing for forkchoice.
AggregateIntervals [3]time.Duration
}
Flags is a struct to represent which features the client will perform on runtime.