Fix Sepolia Testnet Initialization (#10886)

This commit is contained in:
Nishant Das
2022-06-15 23:05:44 +08:00
committed by GitHub
parent ce9eaae22e
commit 23e8e695cc
4 changed files with 12 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -66,6 +67,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -99,6 +101,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -129,6 +132,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -165,6 +169,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {

View File

@@ -24,6 +24,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -51,6 +52,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {

View File

@@ -36,6 +36,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -68,6 +69,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -99,6 +101,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.RopstenTestnet,
features.SepoliaTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {

View File

@@ -134,6 +134,7 @@ var ValidatorFlags = append(deprecatedFlags, []cli.Flag{
disableAttestingHistoryDBCache,
PraterTestnet,
RopstenTestnet,
SepoliaTestnet,
Mainnet,
dynamicKeyReloadDebounceInterval,
attestTimely,
@@ -153,6 +154,7 @@ var BeaconChainFlags = append(deprecatedFlags, []cli.Flag{
disableGRPCConnectionLogging,
PraterTestnet,
RopstenTestnet,
SepoliaTestnet,
Mainnet,
enablePeerScorer,
enableLargerGossipHistory,