Skip to content

Commit c92c7d8

Browse files
committed
test: enable force inclusion, re-enable fi e2e and add fi benchmarks
1 parent 555a48d commit c92c7d8

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

pkg/config/config.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -293,11 +293,9 @@ func (c *Config) Validate() error {
293293
}
294294

295295
if len(c.DA.GetForcedInclusionNamespace()) > 0 {
296-
// if err := validateNamespace(c.DA.GetForcedInclusionNamespace()); err != nil {
297-
// return fmt.Errorf("could not validate forced inclusion namespace (%s): %w", c.DA.GetForcedInclusionNamespace(), err)
298-
// }
299-
return fmt.Errorf("forced inclusion is not yet live")
300-
296+
if err := validateNamespace(c.DA.GetForcedInclusionNamespace()); err != nil {
297+
return fmt.Errorf("could not validate forced inclusion namespace (%s): %w", c.DA.GetForcedInclusionNamespace(), err)
298+
}
301299
}
302300

303301
// Validate lazy mode configuration

test/e2e/evm_force_inclusion_e2e_test.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ func setupSequencerWithForceInclusion(t *testing.T, sut *SystemUnderTest, nodeHo
124124
}
125125

126126
func TestEvmSequencerForceInclusionE2E(t *testing.T) {
127-
t.Skip() // To re-enable after https://github.com/evstack/ev-node/issues/2965
128-
129127
sut := NewSystemUnderTest(t)
130128
workDir := t.TempDir()
131129
sequencerHome := filepath.Join(workDir, "sequencer")
@@ -177,8 +175,6 @@ func TestEvmSequencerForceInclusionE2E(t *testing.T) {
177175
}
178176

179177
func TestEvmFullNodeForceInclusionE2E(t *testing.T) {
180-
t.Skip() // To re-enable after https://github.com/evstack/ev-node/issues/2965
181-
182178
sut := NewSystemUnderTest(t)
183179
workDir := t.TempDir()
184180
sequencerHome := filepath.Join(workDir, "sequencer")
@@ -404,8 +400,6 @@ func setupFullNodeWithForceInclusionCheck(t *testing.T, sut *SystemUnderTest, fu
404400
// Note: This test simulates the scenario by having the sequencer configured to
405401
// listen to the wrong namespace, while we submit directly to the correct namespace.
406402
func TestEvmSyncerMaliciousSequencerForceInclusionE2E(t *testing.T) {
407-
t.Skip() // To re-enable after https://github.com/evstack/ev-node/issues/2965
408-
409403
sut := NewSystemUnderTest(t)
410404
workDir := t.TempDir()
411405
sequencerHome := filepath.Join(workDir, "sequencer")

0 commit comments

Comments
 (0)