From 2183e4955264123b19096a56edcf599bb5bde30e Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 20 Dec 2024 09:42:54 +0100 Subject: [PATCH] fix: use correct merge activation block for sepolia (#13466) --- crates/ethereum-forks/src/hardfork/ethereum.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ethereum-forks/src/hardfork/ethereum.rs b/crates/ethereum-forks/src/hardfork/ethereum.rs index 4e13b001786c..c728f6ed6634 100644 --- a/crates/ethereum-forks/src/hardfork/ethereum.rs +++ b/crates/ethereum-forks/src/hardfork/ethereum.rs @@ -96,7 +96,7 @@ impl EthereumHardfork { /// Retrieves the activation block for the specified hardfork on the Sepolia testnet. pub const fn sepolia_activation_block(&self) -> Option { match self { - Self::Paris => Some(1735371), + Self::Paris => Some(1450409), Self::Shanghai => Some(2990908), Self::Cancun => Some(5187023), Self::Frontier |