mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
c5dcf49ded
* add flag * jim and preston's review * check max peers * gaz * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into minStatusCount * remove space * add references * add warning log * change log * gaz
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package flags
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// GlobalFlags specifies all the global flags for the
|
|
// beacon node.
|
|
type GlobalFlags struct {
|
|
EnableArchive bool
|
|
EnableArchivedValidatorSetChanges bool
|
|
EnableArchivedBlocks bool
|
|
EnableArchivedAttestations bool
|
|
MinimumSyncPeers 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 archiver config
|
|
// based on the provided cli context.
|
|
func ConfigureGlobalFlags(ctx *cli.Context) {
|
|
cfg := &GlobalFlags{}
|
|
if ctx.GlobalBool(ArchiveEnableFlag.Name) {
|
|
cfg.EnableArchive = true
|
|
}
|
|
if ctx.GlobalBool(ArchiveValidatorSetChangesFlag.Name) {
|
|
cfg.EnableArchivedValidatorSetChanges = true
|
|
}
|
|
if ctx.GlobalBool(ArchiveBlocksFlag.Name) {
|
|
cfg.EnableArchivedBlocks = true
|
|
}
|
|
if ctx.GlobalBool(ArchiveAttestationsFlag.Name) {
|
|
cfg.EnableArchivedAttestations = true
|
|
}
|
|
configureMinimumPeers(ctx, cfg)
|
|
|
|
Init(cfg)
|
|
}
|
|
|
|
func configureMinimumPeers(ctx *cli.Context, cfg *GlobalFlags) {
|
|
cfg.MinimumSyncPeers = ctx.GlobalInt(MinSyncPeers.Name)
|
|
maxPeers := int(ctx.GlobalInt64(cmd.P2PMaxPeers.Name))
|
|
if cfg.MinimumSyncPeers > maxPeers {
|
|
log.Warnf("Changing Minimum Sync Peers to %d", maxPeers)
|
|
cfg.MinimumSyncPeers = maxPeers
|
|
}
|
|
}
|