We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c47fa commit 262b4c1Copy full SHA for 262b4c1
crates/op-evm/src/block/holocene/mod.rs
@@ -23,8 +23,8 @@ where
23
// If the granite hardfork is active at the current timestamp, and it was not active at the
24
// previous block timestamp (heuristically, block time is not perfectly constant at 2s), and the
25
// chain is an optimism chain, then we need to upgrade the frax/sfrax contracts.
26
- if chain_spec.is_granite_active_at_timestamp(timestamp)
27
- && !chain_spec.is_granite_active_at_timestamp(timestamp.saturating_sub(2))
+ if chain_spec.is_holocene_active_at_timestamp(timestamp)
+ && !chain_spec.is_holocene_active_at_timestamp(timestamp.saturating_sub(2))
28
{
29
info!(target: "evm", "Forcing frax upgrades on Holocne transition");
30
0 commit comments