From 63a10eaaea62eff645dfccbe16bfb1aa87ce130e Mon Sep 17 00:00:00 2001 From: hopinheimer <48147533+hopinheimer@users.noreply.github.com> Date: Mon, 28 Apr 2025 05:43:46 -0400 Subject: [PATCH] Changing `boot_enr.yaml` to expect `bootstap_nodes.yaml` for pectra devnet (#6956) --- common/eth2_config/src/lib.rs | 2 +- .../chiado/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 .../gnosis/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 .../holesky/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 .../hoodi/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 .../mainnet/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 .../sepolia/{boot_enr.yaml => bootstrap_nodes.yaml} | 0 common/eth2_network_config/src/lib.rs | 2 +- 8 files changed, 2 insertions(+), 2 deletions(-) rename common/eth2_network_config/built_in_network_configs/chiado/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) rename common/eth2_network_config/built_in_network_configs/gnosis/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) rename common/eth2_network_config/built_in_network_configs/holesky/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) rename common/eth2_network_config/built_in_network_configs/hoodi/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) rename common/eth2_network_config/built_in_network_configs/mainnet/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) rename common/eth2_network_config/built_in_network_configs/sepolia/{boot_enr.yaml => bootstrap_nodes.yaml} (100%) diff --git a/common/eth2_config/src/lib.rs b/common/eth2_config/src/lib.rs index 017bdf288d..544138f0fa 100644 --- a/common/eth2_config/src/lib.rs +++ b/common/eth2_config/src/lib.rs @@ -212,7 +212,7 @@ macro_rules! define_net { "../", "deposit_contract_block.txt" ), - boot_enr: $this_crate::$include_file!($this_crate, "../", "boot_enr.yaml"), + boot_enr: $this_crate::$include_file!($this_crate, "../", "bootstrap_nodes.yaml"), genesis_state_bytes: $this_crate::$include_file!($this_crate, "../", "genesis.ssz"), } }}; diff --git a/common/eth2_network_config/built_in_network_configs/chiado/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/chiado/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/chiado/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/chiado/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/built_in_network_configs/gnosis/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/gnosis/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/gnosis/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/gnosis/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/built_in_network_configs/holesky/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/holesky/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/holesky/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/holesky/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/built_in_network_configs/hoodi/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/hoodi/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/hoodi/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/hoodi/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/built_in_network_configs/mainnet/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/mainnet/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/mainnet/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/mainnet/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/built_in_network_configs/sepolia/boot_enr.yaml b/common/eth2_network_config/built_in_network_configs/sepolia/bootstrap_nodes.yaml similarity index 100% rename from common/eth2_network_config/built_in_network_configs/sepolia/boot_enr.yaml rename to common/eth2_network_config/built_in_network_configs/sepolia/bootstrap_nodes.yaml diff --git a/common/eth2_network_config/src/lib.rs b/common/eth2_network_config/src/lib.rs index 0bb12c4187..ac488ed2a3 100644 --- a/common/eth2_network_config/src/lib.rs +++ b/common/eth2_network_config/src/lib.rs @@ -31,7 +31,7 @@ use url::Url; pub use eth2_config::GenesisStateSource; pub const DEPLOY_BLOCK_FILE: &str = "deposit_contract_block.txt"; -pub const BOOT_ENR_FILE: &str = "boot_enr.yaml"; +pub const BOOT_ENR_FILE: &str = "bootstrap_nodes.yaml"; pub const GENESIS_STATE_FILE: &str = "genesis.ssz"; pub const BASE_CONFIG_FILE: &str = "config.yaml";