Skip to content

Commit 21621d6

Browse files
committed
add sepolia merge netsplit block
* The merge netsplit block was set by geth here: ethereum/go-ethereum#25372 because of the "block" suffix, the field is pulled to create a forkid in geth's gatherBlocks method
1 parent 6473435 commit 21621d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/primitives/src/chain_spec.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ pub static SEPOLIA: Lazy<ChainSpec> = Lazy::new(|| ChainSpec {
5959
genesis: serde_json::from_str(include_str!("../res/genesis/sepolia.json"))
6060
.expect("Can't deserialize Sepolia genesis json"),
6161
genesis_hash: H256(hex!("25a5cc106eea7138acab33231d7160d69cb777ee0c2c553fcddf5138993e6dd9")),
62-
hardforks: BTreeMap::new(),
62+
hardforks: BTreeMap::from([
63+
(Hardfork::MergeNetsplit, 1735371)
64+
]),
6365
dao_fork_support: true,
6466
paris_block: Some(1450408),
6567
paris_ttd: Some(U256::from(17000000000000000_u64)),

0 commit comments

Comments
 (0)