Skip to content

Commit 141434c

Browse files
authored
op-deployer: De-schedule Isthmus from v3.0.0 (#14879)
1 parent f26d7bb commit 141434c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

op-deployer/pkg/deployer/standard/standard.go

-3
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,8 @@ func DefaultHardforkScheduleForTag(tag string) *genesis.UpgradeScheduleDeployCon
227227
switch tag {
228228
case ContractsV160Tag, ContractsV170Beta1L2Tag:
229229
return sched
230-
case ContractsV180Tag, ContractsV200Tag:
231-
sched.ActivateForkAtGenesis(rollup.Holocene)
232230
default:
233231
sched.ActivateForkAtGenesis(rollup.Holocene)
234-
sched.ActivateForkAtGenesis(rollup.Isthmus)
235232
}
236233

237234
return sched

op-deployer/pkg/deployer/standard/standard_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func TestDefaultHardforkScheduleForTag(t *testing.T) {
2828

2929
sched = DefaultHardforkScheduleForTag(ContractsV300Tag)
3030
require.NotNil(t, sched.HoloceneTime(0))
31-
require.NotNil(t, sched.IsthmusTime(0))
31+
require.Nil(t, sched.IsthmusTime(0))
3232
}
3333

3434
func TestStandardAddresses(t *testing.T) {

0 commit comments

Comments
 (0)