Skip to content

Commit

Permalink
add sepolia merge netsplit block
Browse files Browse the repository at this point in the history
 * 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
  • Loading branch information
Rjected committed Jan 18, 2023
1 parent 6473435 commit 21621d6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/primitives/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ pub static SEPOLIA: Lazy<ChainSpec> = Lazy::new(|| ChainSpec {
genesis: serde_json::from_str(include_str!("../res/genesis/sepolia.json"))
.expect("Can't deserialize Sepolia genesis json"),
genesis_hash: H256(hex!("25a5cc106eea7138acab33231d7160d69cb777ee0c2c553fcddf5138993e6dd9")),
hardforks: BTreeMap::new(),
hardforks: BTreeMap::from([
(Hardfork::MergeNetsplit, 1735371)
]),
dao_fork_support: true,
paris_block: Some(1450408),
paris_ttd: Some(U256::from(17000000000000000_u64)),
Expand Down

0 comments on commit 21621d6

Please sign in to comment.