Skip to content

Commit

Permalink
chore: Update granite mainnet time (#10430)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Aug 21, 2024
1 parent 64fb41c commit 2dc7f13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions crates/chainspec/src/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1691,11 +1691,11 @@ Post-merge hard forks (timestamp based):
),
(
Head { number: 0, timestamp: 1720627201, ..Default::default() },
ForkId { hash: ForkHash([0xe4, 0x01, 0x0e, 0xb9]), next: 1725984001 },
ForkId { hash: ForkHash([0xe4, 0x01, 0x0e, 0xb9]), next: 1726070401 },
),
(
Head { number: 0, timestamp: 1725984001, ..Default::default() },
ForkId { hash: ForkHash([0xfa, 0x57, 0x86, 0x01]), next: 0 },
Head { number: 0, timestamp: 1726070401, ..Default::default() },
ForkId { hash: ForkHash([0xbc, 0x38, 0xf9, 0xca]), next: 0 },
),
],
);
Expand Down Expand Up @@ -2653,7 +2653,7 @@ Post-merge hard forks (timestamp based):
#[test]
fn latest_base_mainnet_fork_id() {
assert_eq!(
ForkId { hash: ForkHash([0xfa, 0x57, 0x86, 0x01]), next: 0 },
ForkId { hash: ForkHash([0xbc, 0x38, 0xf9, 0xca]), next: 0 },
BASE_MAINNET.latest_fork_id()
)
}
Expand Down
6 changes: 3 additions & 3 deletions crates/ethereum-forks/src/hardfork/optimism.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl OptimismHardfork {
Self::Canyon => Some(1704992401),
Self::Ecotone => Some(1710374401),
Self::Fjord => Some(1720627201),
Self::Granite => Some(1725984001),
Self::Granite => Some(1726070401),
},
)
}
Expand Down Expand Up @@ -219,7 +219,7 @@ impl OptimismHardfork {
(EthereumHardfork::Cancun.boxed(), ForkCondition::Timestamp(1710374401)),
(Self::Ecotone.boxed(), ForkCondition::Timestamp(1710374401)),
(Self::Fjord.boxed(), ForkCondition::Timestamp(1720627201)),
(Self::Granite.boxed(), ForkCondition::Timestamp(1725984001)),
(Self::Granite.boxed(), ForkCondition::Timestamp(1726070401)),
])
}

Expand Down Expand Up @@ -312,7 +312,7 @@ impl OptimismHardfork {
(EthereumHardfork::Cancun.boxed(), ForkCondition::Timestamp(1710374401)),
(Self::Ecotone.boxed(), ForkCondition::Timestamp(1710374401)),
(Self::Fjord.boxed(), ForkCondition::Timestamp(1720627201)),
(Self::Granite.boxed(), ForkCondition::Timestamp(1725984001)),
(Self::Granite.boxed(), ForkCondition::Timestamp(1726070401)),
])
}
}
Expand Down

0 comments on commit 2dc7f13

Please sign in to comment.