mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
98 lines
3.3 KiB
Go
98 lines
3.3 KiB
Go
package node
|
|
|
|
import (
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
"github.com/prysmaticlabs/prysm/cmd/beacon-chain/flags"
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/tracing"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func configureTracing(cliCtx *cli.Context) error {
|
|
return tracing.Setup(
|
|
"beacon-chain", // service name
|
|
cliCtx.String(cmd.TracingProcessNameFlag.Name),
|
|
cliCtx.String(cmd.TracingEndpointFlag.Name),
|
|
cliCtx.Float64(cmd.TraceSampleFractionFlag.Name),
|
|
cliCtx.Bool(cmd.EnableTracingFlag.Name),
|
|
)
|
|
}
|
|
|
|
func configureChainConfig(cliCtx *cli.Context) {
|
|
if cliCtx.IsSet(cmd.ChainConfigFileFlag.Name) {
|
|
chainConfigFileName := cliCtx.String(cmd.ChainConfigFileFlag.Name)
|
|
params.LoadChainConfigFile(chainConfigFileName)
|
|
}
|
|
}
|
|
|
|
func configureHistoricalSlasher(cliCtx *cli.Context) {
|
|
if cliCtx.Bool(flags.HistoricalSlasherNode.Name) {
|
|
c := params.BeaconConfig()
|
|
// Save a state every 4 epochs.
|
|
c.SlotsPerArchivedPoint = params.BeaconConfig().SlotsPerEpoch * 4
|
|
params.OverrideBeaconConfig(c)
|
|
cmdConfig := cmd.Get()
|
|
// Allow up to 4096 attestations at a time to be requested from the beacon nde.
|
|
cmdConfig.MaxRPCPageSize = int(params.BeaconConfig().SlotsPerEpoch.Mul(params.BeaconConfig().MaxAttestations))
|
|
cmd.Init(cmdConfig)
|
|
log.Warnf(
|
|
"Setting %d slots per archive point and %d max RPC page size for historical slasher usage. This requires additional storage",
|
|
c.SlotsPerArchivedPoint,
|
|
cmdConfig.MaxRPCPageSize,
|
|
)
|
|
}
|
|
}
|
|
|
|
func configureSlotsPerArchivedPoint(cliCtx *cli.Context) {
|
|
if cliCtx.IsSet(flags.SlotsPerArchivedPoint.Name) {
|
|
c := params.BeaconConfig()
|
|
c.SlotsPerArchivedPoint = types.Slot(cliCtx.Int(flags.SlotsPerArchivedPoint.Name))
|
|
params.OverrideBeaconConfig(c)
|
|
}
|
|
}
|
|
|
|
func configureEth1Config(cliCtx *cli.Context) {
|
|
if cliCtx.IsSet(flags.ChainID.Name) {
|
|
c := params.BeaconConfig()
|
|
c.DepositChainID = cliCtx.Uint64(flags.ChainID.Name)
|
|
params.OverrideBeaconConfig(c)
|
|
}
|
|
if cliCtx.IsSet(flags.NetworkID.Name) {
|
|
c := params.BeaconConfig()
|
|
c.DepositNetworkID = cliCtx.Uint64(flags.NetworkID.Name)
|
|
params.OverrideBeaconConfig(c)
|
|
}
|
|
if cliCtx.IsSet(flags.DepositContractFlag.Name) {
|
|
c := params.BeaconConfig()
|
|
c.DepositContractAddress = cliCtx.String(flags.DepositContractFlag.Name)
|
|
params.OverrideBeaconConfig(c)
|
|
}
|
|
}
|
|
|
|
func configureNetwork(cliCtx *cli.Context) {
|
|
if cliCtx.IsSet(cmd.BootstrapNode.Name) {
|
|
c := params.BeaconNetworkConfig()
|
|
c.BootstrapNodes = cliCtx.StringSlice(cmd.BootstrapNode.Name)
|
|
params.OverrideBeaconNetworkConfig(c)
|
|
}
|
|
if cliCtx.IsSet(flags.ContractDeploymentBlock.Name) {
|
|
networkCfg := params.BeaconNetworkConfig()
|
|
networkCfg.ContractDeploymentBlock = uint64(cliCtx.Int(flags.ContractDeploymentBlock.Name))
|
|
params.OverrideBeaconNetworkConfig(networkCfg)
|
|
}
|
|
}
|
|
|
|
func configureInteropConfig(cliCtx *cli.Context) {
|
|
genStateIsSet := cliCtx.IsSet(flags.InteropGenesisStateFlag.Name)
|
|
genTimeIsSet := cliCtx.IsSet(flags.InteropGenesisTimeFlag.Name)
|
|
numValsIsSet := cliCtx.IsSet(flags.InteropNumValidatorsFlag.Name)
|
|
votesIsSet := cliCtx.IsSet(flags.InteropMockEth1DataVotesFlag.Name)
|
|
|
|
if genStateIsSet || genTimeIsSet || numValsIsSet || votesIsSet {
|
|
bCfg := params.BeaconConfig()
|
|
bCfg.ConfigName = "interop"
|
|
params.OverrideBeaconConfig(bCfg)
|
|
}
|
|
}
|