mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
baf9ec60eb
* adds BlockBatchLimitBurstFactor flag * Merge branch 'master' into burst-factor-flag
79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
package flags
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
log "github.com/sirupsen/logrus"
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
// GlobalFlags specifies all the global flags for the
|
|
// beacon node.
|
|
type GlobalFlags struct {
|
|
EnableArchive bool
|
|
EnableArchivedValidatorSetChanges bool
|
|
EnableArchivedBlocks bool
|
|
EnableArchivedAttestations bool
|
|
UnsafeSync bool
|
|
DisableDiscv5 bool
|
|
MinimumSyncPeers int
|
|
MaxPageSize int
|
|
DeploymentBlock int
|
|
BlockBatchLimit int
|
|
BlockBatchLimitBurstFactor int
|
|
}
|
|
|
|
var globalConfig *GlobalFlags
|
|
|
|
// Get retrieves the global config.
|
|
func Get() *GlobalFlags {
|
|
if globalConfig == nil {
|
|
return &GlobalFlags{}
|
|
}
|
|
return globalConfig
|
|
}
|
|
|
|
// Init sets the global config equal to the config that is passed in.
|
|
func Init(c *GlobalFlags) {
|
|
globalConfig = c
|
|
}
|
|
|
|
// ConfigureGlobalFlags initializes the global config.
|
|
// based on the provided cli context.
|
|
func ConfigureGlobalFlags(ctx *cli.Context) {
|
|
cfg := &GlobalFlags{}
|
|
if ctx.Bool(ArchiveEnableFlag.Name) {
|
|
cfg.EnableArchive = true
|
|
}
|
|
if ctx.Bool(ArchiveValidatorSetChangesFlag.Name) {
|
|
cfg.EnableArchivedValidatorSetChanges = true
|
|
}
|
|
if ctx.Bool(ArchiveBlocksFlag.Name) {
|
|
cfg.EnableArchivedBlocks = true
|
|
}
|
|
if ctx.Bool(ArchiveAttestationsFlag.Name) {
|
|
cfg.EnableArchivedAttestations = true
|
|
}
|
|
if ctx.Bool(UnsafeSync.Name) {
|
|
cfg.UnsafeSync = true
|
|
}
|
|
if ctx.Bool(DisableDiscv5.Name) {
|
|
cfg.DisableDiscv5 = true
|
|
}
|
|
cfg.BlockBatchLimit = ctx.Int(BlockBatchLimit.Name)
|
|
cfg.BlockBatchLimitBurstFactor = ctx.Int(BlockBatchLimitBurstFactor.Name)
|
|
cfg.MaxPageSize = ctx.Int(RPCMaxPageSize.Name)
|
|
cfg.DeploymentBlock = ctx.Int(ContractDeploymentBlock.Name)
|
|
configureMinimumPeers(ctx, cfg)
|
|
|
|
Init(cfg)
|
|
}
|
|
|
|
func configureMinimumPeers(ctx *cli.Context, cfg *GlobalFlags) {
|
|
cfg.MinimumSyncPeers = ctx.Int(MinSyncPeers.Name)
|
|
maxPeers := int(ctx.Int64(cmd.P2PMaxPeers.Name))
|
|
if cfg.MinimumSyncPeers > maxPeers {
|
|
log.Warnf("Changing Minimum Sync Peers to %d", maxPeers)
|
|
cfg.MinimumSyncPeers = maxPeers
|
|
}
|
|
}
|