Skip to content

Commit

Permalink
Activate Altair on mainnet at epoch 74240 (#2632)
Browse files Browse the repository at this point in the history
## Proposed Changes

Schedule Altair on mainnet for epoch 74240 as per ethereum/consensus-specs#2625

This puts the date for Altair as Wed Oct 27 2021 10:56:23 GMT+0000
  • Loading branch information
michaelsproul committed Sep 27, 2021
1 parent 113ef74 commit e895074
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GENESIS_DELAY: 604800

# Altair
ALTAIR_FORK_VERSION: 0x01000000
ALTAIR_FORK_EPOCH: 18446744073709551615
ALTAIR_FORK_EPOCH: 74240
# Merge
MERGE_FORK_VERSION: 0x02000000
MERGE_FORK_EPOCH: 18446744073709551615
Expand Down
4 changes: 1 addition & 3 deletions consensus/types/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,6 @@ impl ChainSpec {
}

/// Returns a `ChainSpec` compatible with the Ethereum Foundation specification.
///
/// Spec v0.12.3
pub fn mainnet() -> Self {
Self {
/*
Expand Down Expand Up @@ -468,7 +466,7 @@ impl ChainSpec {
domain_sync_committee_selection_proof: 8,
domain_contribution_and_proof: 9,
altair_fork_version: [0x01, 0x00, 0x00, 0x00],
altair_fork_epoch: None,
altair_fork_epoch: Some(Epoch::new(74240)),

/*
* Network specific
Expand Down

0 comments on commit e895074

Please sign in to comment.