From f3ae67a94bf0532851763f4f3d6178f2fb4cad10 Mon Sep 17 00:00:00 2001 From: Jim McDonald Date: Wed, 8 Jan 2020 13:54:44 +0000 Subject: [PATCH] Fix bad update in #4453 (#4455) --- shared/params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/params/config.go b/shared/params/config.go index 828065e18cd..fbb72d7b2af 100644 --- a/shared/params/config.go +++ b/shared/params/config.go @@ -42,7 +42,7 @@ type BeaconChainConfig struct { SecondsPerSlot uint64 `yaml:"SECONDS_PER_SLOT"` // SecondsPerSlot is how many seconds are in a single slot. SlotsPerEpoch uint64 `yaml:"SLOTS_PER_EPOCH"` // SlotsPerEpoch is the number of slots in an epoch. MinSeedLookahead uint64 `yaml:"MIN_SEED_LOOKAHEAD"` // SeedLookahead is the duration of randao look ahead seed. - MaxSeedLookahead uint64 `yaml:"MIN_SEED_LOOKAHEAD"` // MaxSeedLookahead is the duration a validator has to wait for entry and exit in epoch. + MaxSeedLookahead uint64 `yaml:"MAX_SEED_LOOKAHEAD"` // MaxSeedLookahead is the duration a validator has to wait for entry and exit in epoch. SlotsPerEth1VotingPeriod uint64 `yaml:"SLOTS_PER_ETH1_VOTING_PERIOD"` // SlotsPerEth1VotingPeriod defines how often the merkle root of deposit receipts get updated in beacon node. SlotsPerHistoricalRoot uint64 `yaml:"SLOTS_PER_HISTORICAL_ROOT"` // SlotsPerHistoricalRoot defines how often the historical root is saved. MinValidatorWithdrawabilityDelay uint64 `yaml:"MIN_VALIDATOR_WITHDRAWABILITY_DELAY"` // MinValidatorWithdrawabilityDelay is the shortest amount of time a validator has to wait to withdraw.