From 02849cf86dbeff43898ea6e5f0d2e2f7b8b1c3a0 Mon Sep 17 00:00:00 2001 From: Paul Harris Date: Fri, 3 Mar 2023 11:31:29 +1000 Subject: [PATCH] Revert "Added Capella fork config for Goerli (#6898)" This reverts commit b0430680981423dc7f94ae144e60591e09e01ac3. --- CHANGELOG.md | 1 - .../teku/spec/config/SpecConfigReader.java | 3 + .../teku/spec/config/configs/gnosis.yaml | 4 +- .../teku/spec/config/configs/kiln.yaml | 4 +- .../teku/spec/config/configs/less-swift.yaml | 4 +- .../teku/spec/config/configs/prater.yaml | 7 +- .../teku/spec/config/configs/ropsten.yaml | 4 +- .../teku/spec/config/configs/sepolia.yaml | 4 +- .../pegasys/teku/spec/SpecFactoryTest.java | 14 +--- .../pegasys/teku/spec/SpecMilestoneTest.java | 68 +++---------------- .../pegasys/teku/spec/SpecVersionTest.java | 13 ---- .../config/invalid/invalidPreset_unknown.yaml | 4 +- .../invalid/invalidPreset_wrongType.yaml | 4 +- .../teku/spec/config/standard/less-swift.yaml | 4 +- .../spec/config/standard/with-overrides.yaml | 4 +- .../teku/cli/subcommand/test-spec.yaml | 4 +- 16 files changed, 35 insertions(+), 111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15489228fc9..19c53c3ae45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,6 @@ For information on changes in released versions of Teku, see the [releases page] - Added an optional query parameter `locally_submitted` to `/eth/v1/beacon/pool/bls_to_execution_changes` to allow users to query only bls changes submitted to the current node. - Added `/eth/v1/builder/states/{state_id}/expected_withdrawals` rest api endpoint. - Added `/eth/v1/beacon/rewards/sync_committee/{block_id}` rest api endpoint. -- Added Capella fork information for Goerli network configuration. ### Bug Fixes - Included All forks in fork schedule if they're defined in configuration. \ No newline at end of file diff --git a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/SpecConfigReader.java b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/SpecConfigReader.java index 3d270790cb1..44b43764cb2 100644 --- a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/SpecConfigReader.java +++ b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/SpecConfigReader.java @@ -58,6 +58,9 @@ public class SpecConfigReader { ImmutableSet.of( PRESET_KEY, CONFIG_NAME_KEY, + // Unsupported, upcoming fork-related keys + "SHARDING_FORK_VERSION", + "SHARDING_FORK_EPOCH", // Old merge config item which is no longer used, ignore for backwards compatibility "TRANSITION_TOTAL_DIFFICULTY"); private static final ImmutableSet CONSTANT_KEYS = diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/gnosis.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/gnosis.yaml index c916eb8bc68..3d908bcba5b 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/gnosis.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/gnosis.yaml @@ -43,8 +43,8 @@ BELLATRIX_FORK_EPOCH: 385536 # 2022-11-30T19:23:40.000Z CAPELLA_FORK_VERSION: 0x03000064 CAPELLA_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x04000064 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x04000064 +SHARDING_FORK_EPOCH: 18446744073709551615 # TBD, 2**32 is a placeholder. Merge transition approach is in active R&D. TRANSITION_TOTAL_DIFFICULTY: 4294967296 diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/kiln.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/kiln.yaml index 7d309e4c4d9..6a07e6b9ce3 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/kiln.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/kiln.yaml @@ -30,8 +30,8 @@ TERMINAL_BLOCK_HASH: 0x000000000000000000000000000000000000000000000000000000000 TERMINAL_BLOCK_HASH_ACTIVATION_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03000000 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03000000 +SHARDING_FORK_EPOCH: 18446744073709551615 # Time parameters diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/less-swift.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/less-swift.yaml index 2126eb64df1..2cb2ff430e6 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/less-swift.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/less-swift.yaml @@ -33,8 +33,8 @@ BELLATRIX_FORK_EPOCH: 18446744073709551615 CAPELLA_FORK_VERSION: 0x03000001 CAPELLA_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x04000001 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x04000001 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # --------------------------------------------------------------- diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/prater.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/prater.yaml index 488fec86c5d..e144ab77607 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/prater.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/prater.yaml @@ -37,12 +37,9 @@ ALTAIR_FORK_EPOCH: 36660 # BELLATRIX BELLATRIX_FORK_VERSION: 0x02001020 BELLATRIX_FORK_EPOCH: 112260 -# Capella -CAPELLA_FORK_VERSION: 0x03001020 -CAPELLA_FORK_EPOCH: 162304 # Sharding -DENEB_FORK_VERSION: 0x03001020 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03001020 +SHARDING_FORK_EPOCH: 18446744073709551615 # Time parameters diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/ropsten.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/ropsten.yaml index 927760ebdad..c2614979447 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/ropsten.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/ropsten.yaml @@ -28,8 +28,8 @@ TERMINAL_BLOCK_HASH: 0x000000000000000000000000000000000000000000000000000000000 TERMINAL_BLOCK_HASH_ACTIVATION_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03001020 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03001020 +SHARDING_FORK_EPOCH: 18446744073709551615 # Time parameters # --------------------------------------------------------------- diff --git a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/sepolia.yaml b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/sepolia.yaml index abd300977b8..0b87322491f 100644 --- a/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/sepolia.yaml +++ b/ethereum/spec/src/main/resources/tech/pegasys/teku/spec/config/configs/sepolia.yaml @@ -33,8 +33,8 @@ CAPELLA_FORK_VERSION: 0x90000072 CAPELLA_FORK_EPOCH: 56832 # Sharding -DENEB_FORK_VERSION: 0x04001020 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x04001020 +SHARDING_FORK_EPOCH: 18446744073709551615 # Time parameters # --------------------------------------------------------------- diff --git a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecFactoryTest.java b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecFactoryTest.java index 922daa1edf8..5a73da71faf 100644 --- a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecFactoryTest.java +++ b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecFactoryTest.java @@ -38,7 +38,7 @@ public class SpecFactoryTest { private static final Set NON_BELLATRIX_NETWORKS = Set.of("swift", "less-swift"); - private static final Set CAPELLA_NETWORKS = Set.of("sepolia", "prater"); + private static final Set CAPELLA_NETWORKS = Set.of("sepolia"); @Test public void defaultFactoryShouldScheduleAltairAndBellatrixForMainNet() { @@ -64,18 +64,6 @@ public void defaultFactoryShouldNotEnableBellatrixUnlessForkEpochIsSet(final Str } } - @ParameterizedTest(name = "{0}") - @MethodSource("getKnownConfigNames") - public void shouldSupportCapellaWhenForkEpochSetInConfig(final String configName) { - final Spec spec = SpecFactory.create(configName); - if (CAPELLA_NETWORKS.contains(configName)) { - assertThat(spec.getForkSchedule().getSupportedMilestones()) - .containsExactly(PHASE0, ALTAIR, BELLATRIX, CAPELLA); - } else { - assertThat(spec.getForkSchedule().getSupportedMilestones()).doesNotContain(CAPELLA); - } - } - @Test void shouldSupportAltairWhenForkEpochSetInConfig() { final SpecConfig config = diff --git a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecMilestoneTest.java b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecMilestoneTest.java index 0e9dfc35397..8925efabc5c 100644 --- a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecMilestoneTest.java +++ b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecMilestoneTest.java @@ -21,13 +21,10 @@ import tech.pegasys.teku.spec.config.SpecConfig; import tech.pegasys.teku.spec.config.SpecConfigAltair; import tech.pegasys.teku.spec.config.SpecConfigBellatrix; -import tech.pegasys.teku.spec.config.SpecConfigCapella; import tech.pegasys.teku.spec.config.SpecConfigLoader; import tech.pegasys.teku.spec.networks.Eth2Network; public class SpecMilestoneTest { - private final SpecConfigCapella capellaSpecConfig = - SpecConfigCapella.required(SpecConfigLoader.loadConfig(Eth2Network.MINIMAL.configName())); private final SpecConfigBellatrix bellatrixSpecConfig = SpecConfigBellatrix.required(SpecConfigLoader.loadConfig(Eth2Network.MINIMAL.configName())); private final SpecConfigAltair altairSpecConfig = @@ -37,24 +34,13 @@ public class SpecMilestoneTest { @Test public void isGreaterThanOrEqualTo() { - // Phase0 - assertThat(SpecMilestone.PHASE0.isGreaterThanOrEqualTo(SpecMilestone.PHASE0)).isTrue(); - assertThat(SpecMilestone.PHASE0.isGreaterThanOrEqualTo(SpecMilestone.ALTAIR)).isFalse(); - - // Altair assertThat(SpecMilestone.ALTAIR.isGreaterThanOrEqualTo(SpecMilestone.PHASE0)).isTrue(); assertThat(SpecMilestone.ALTAIR.isGreaterThanOrEqualTo(SpecMilestone.ALTAIR)).isTrue(); - assertThat(SpecMilestone.ALTAIR.isGreaterThanOrEqualTo(SpecMilestone.BELLATRIX)).isFalse(); - - // Bellatrix + assertThat(SpecMilestone.PHASE0.isGreaterThanOrEqualTo(SpecMilestone.PHASE0)).isTrue(); + assertThat(SpecMilestone.PHASE0.isGreaterThanOrEqualTo(SpecMilestone.ALTAIR)).isFalse(); assertThat(SpecMilestone.BELLATRIX.isGreaterThanOrEqualTo(SpecMilestone.ALTAIR)).isTrue(); assertThat(SpecMilestone.BELLATRIX.isGreaterThanOrEqualTo(SpecMilestone.BELLATRIX)).isTrue(); - assertThat(SpecMilestone.BELLATRIX.isGreaterThanOrEqualTo(SpecMilestone.CAPELLA)).isFalse(); - - // Capella - assertThat(SpecMilestone.CAPELLA.isGreaterThanOrEqualTo(SpecMilestone.BELLATRIX)).isTrue(); - assertThat(SpecMilestone.CAPELLA.isGreaterThanOrEqualTo(SpecMilestone.CAPELLA)).isTrue(); - assertThat(SpecMilestone.CAPELLA.isGreaterThanOrEqualTo(SpecMilestone.DENEB)).isFalse(); + assertThat(SpecMilestone.ALTAIR.isGreaterThanOrEqualTo(SpecMilestone.BELLATRIX)).isFalse(); } @Test @@ -74,12 +60,6 @@ public void getAllPriorMilestones_bellatrix() { .contains(SpecMilestone.PHASE0, SpecMilestone.ALTAIR); } - @Test - public void getAllPriorMilestones_capella() { - assertThat(SpecMilestone.getAllPriorMilestones(SpecMilestone.CAPELLA)) - .contains(SpecMilestone.PHASE0, SpecMilestone.ALTAIR, SpecMilestone.BELLATRIX); - } - @Test public void getMilestonesUpTo_phase0() { assertThat(SpecMilestone.getMilestonesUpTo(SpecMilestone.PHASE0)) @@ -98,12 +78,6 @@ public void getMilestonesUpTo_bellatrix() { .contains(SpecMilestone.PHASE0, SpecMilestone.ALTAIR, SpecMilestone.BELLATRIX); } - @Test - public void getMilestonesUpTo_capella() { - assertThat(SpecMilestone.getMilestonesUpTo(SpecMilestone.CAPELLA)) - .contains(SpecMilestone.PHASE0, SpecMilestone.ALTAIR, SpecMilestone.BELLATRIX); - } - @Test public void areMilestonesInOrder() { assertThat(SpecMilestone.areMilestonesInOrder(SpecMilestone.PHASE0, SpecMilestone.ALTAIR)) @@ -124,10 +98,6 @@ public void areMilestonesInOrder() { SpecMilestone.areMilestonesInOrder( SpecMilestone.PHASE0, SpecMilestone.BELLATRIX, SpecMilestone.ALTAIR)) .isFalse(); - assertThat(SpecMilestone.areMilestonesInOrder(SpecMilestone.BELLATRIX, SpecMilestone.CAPELLA)) - .isTrue(); - assertThat(SpecMilestone.areMilestonesInOrder(SpecMilestone.CAPELLA, SpecMilestone.BELLATRIX)) - .isFalse(); } @Test @@ -152,55 +122,35 @@ public void getForkVersion_bellatrix() { } @Test - public void getForkVersion_capella() { - final Bytes4 expected = capellaSpecConfig.getCapellaForkVersion(); - assertThat(SpecMilestone.getForkVersion(capellaSpecConfig, SpecMilestone.CAPELLA)) - .contains(expected); - } - - @Test - public void getForkEpoch_phase0() { + public void getForkSlot_phase0() { final UInt64 expected = UInt64.ZERO; assertThat(SpecMilestone.getForkEpoch(altairSpecConfig, SpecMilestone.PHASE0)) .contains(expected); } @Test - public void getForkEpoch_altair() { + public void getForkSlot_altair() { final UInt64 expected = altairSpecConfig.getAltairForkEpoch(); assertThat(SpecMilestone.getForkEpoch(altairSpecConfig, SpecMilestone.ALTAIR)) .contains(expected); } @Test - public void getForkEpoch_bellatrix() { + public void getForkSlot_bellatrix() { final UInt64 expected = bellatrixSpecConfig.getBellatrixForkEpoch(); assertThat(SpecMilestone.getForkEpoch(bellatrixSpecConfig, SpecMilestone.BELLATRIX)) .contains(expected); } @Test - public void getForkEpoch_capella() { - final UInt64 expected = capellaSpecConfig.getCapellaForkEpoch(); - assertThat(SpecMilestone.getForkEpoch(capellaSpecConfig, SpecMilestone.CAPELLA)) - .contains(expected); - } - - @Test - public void getForkEpoch_altairNotScheduled() { + public void getForkSlot_altairNotScheduled() { assertThat(SpecMilestone.getForkEpoch(phase0SpecConfig, SpecMilestone.ALTAIR)) .contains(UInt64.MAX_VALUE); } @Test - public void getForkEpoch_bellatrixNotScheduled() { - assertThat(SpecMilestone.getForkEpoch(altairSpecConfig, SpecMilestone.BELLATRIX)) - .contains(UInt64.MAX_VALUE); - } - - @Test - public void getForkEpoch_capellaNotScheduled() { - assertThat(SpecMilestone.getForkEpoch(bellatrixSpecConfig, SpecMilestone.CAPELLA)) + public void getForkSlot_bellatrixNotScheduled() { + assertThat(SpecMilestone.getForkEpoch(phase0SpecConfig, SpecMilestone.BELLATRIX)) .contains(UInt64.MAX_VALUE); } } diff --git a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecVersionTest.java b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecVersionTest.java index 8448eab1898..950de832989 100644 --- a/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecVersionTest.java +++ b/ethereum/spec/src/test/java/tech/pegasys/teku/spec/SpecVersionTest.java @@ -19,7 +19,6 @@ import org.junit.jupiter.api.Test; import tech.pegasys.teku.spec.config.SpecConfigAltair; import tech.pegasys.teku.spec.config.SpecConfigBellatrix; -import tech.pegasys.teku.spec.config.SpecConfigCapella; import tech.pegasys.teku.spec.config.SpecConfigLoader; import tech.pegasys.teku.spec.networks.Eth2Network; @@ -61,16 +60,4 @@ void shouldCreateBellatrixSpec() { assertThat(actualVersion.get().getSchemaDefinitions()) .hasSameClassAs(expectedVersion.getSchemaDefinitions()); } - - @Test - void shouldCreateCapellaSpec() { - final SpecConfigCapella capellaSpecConfig = SpecConfigCapella.required(minimalConfig); - final SpecVersion expectedVersion = SpecVersion.createCapella(capellaSpecConfig); - final Optional actualVersion = - SpecVersion.create(SpecMilestone.CAPELLA, minimalConfig); - assertThat(actualVersion).isPresent(); - assertThat(actualVersion.get().getMilestone()).isEqualTo(SpecMilestone.CAPELLA); - assertThat(actualVersion.get().getSchemaDefinitions()) - .hasSameClassAs(expectedVersion.getSchemaDefinitions()); - } } diff --git a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_unknown.yaml b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_unknown.yaml index a925e79560d..ff25e835bd3 100644 --- a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_unknown.yaml +++ b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_unknown.yaml @@ -27,8 +27,8 @@ ALTAIR_FORK_EPOCH: 18446744073709551615 BELLATRIX_FORK_VERSION: 0x02000001 BELLATRIX_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03000001 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03000001 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # --------------------------------------------------------------- diff --git a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_wrongType.yaml b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_wrongType.yaml index 9361e343df9..421f8fbe1f9 100644 --- a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_wrongType.yaml +++ b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/invalid/invalidPreset_wrongType.yaml @@ -27,8 +27,8 @@ ALTAIR_FORK_EPOCH: 18446744073709551615 BELLATRIX_FORK_VERSION: 0x02000001 BELLATRIX_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03000001 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03000001 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # --------------------------------------------------------------- diff --git a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/less-swift.yaml b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/less-swift.yaml index 2f3bda8bddc..fce12ee1633 100644 --- a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/less-swift.yaml +++ b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/less-swift.yaml @@ -30,8 +30,8 @@ ALTAIR_FORK_EPOCH: 18446744073709551615 BELLATRIX_FORK_VERSION: 0x02000001 BELLATRIX_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03000001 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03000001 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # --------------------------------------------------------------- diff --git a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/with-overrides.yaml b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/with-overrides.yaml index 3a776d02c50..455383e0e7e 100644 --- a/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/with-overrides.yaml +++ b/ethereum/spec/src/test/resources/tech/pegasys/teku/spec/config/standard/with-overrides.yaml @@ -31,8 +31,8 @@ ALTAIR_FORK_EPOCH: 18446744073709551615 BELLATRIX_FORK_VERSION: 0x02000000 BELLATRIX_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03000000 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03000000 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # --------------------------------------------------------------- diff --git a/teku/src/integration-test/resources/tech/pegasys/teku/cli/subcommand/test-spec.yaml b/teku/src/integration-test/resources/tech/pegasys/teku/cli/subcommand/test-spec.yaml index 619bede3ff0..7aa28841cd4 100644 --- a/teku/src/integration-test/resources/tech/pegasys/teku/cli/subcommand/test-spec.yaml +++ b/teku/src/integration-test/resources/tech/pegasys/teku/cli/subcommand/test-spec.yaml @@ -30,8 +30,8 @@ ALTAIR_FORK_EPOCH: 36660 BELLATRIX_FORK_VERSION: 0x02001020 BELLATRIX_FORK_EPOCH: 18446744073709551615 # Sharding -DENEB_FORK_VERSION: 0x03001020 -DENEB_FORK_EPOCH: 18446744073709551615 +SHARDING_FORK_VERSION: 0x03001020 +SHARDING_FORK_EPOCH: 18446744073709551615 # Transition # ---------------------------------------------------------------