Skip to content

Commit

Permalink
feat(oe): Enable OE by default (target: v8.0+) (#2595)
Browse files Browse the repository at this point in the history
teddyding authored Nov 25, 2024
1 parent 92733ca commit 8d0570d
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/app/flags/flags.go
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ const (

DefaultVEOracleEnabled = true

DefaultOptimisticExecutionEnabled = false
DefaultOptimisticExecutionEnabled = true
DefaultOptimisticExecutionTestAbortRate = 0
)

3 changes: 3 additions & 0 deletions protocol/testutil/app/app.go
Original file line number Diff line number Diff line change
@@ -1308,6 +1308,9 @@ func launchValidatorInDir(
"--oracle.enabled=false",
"--oracle.metrics_enabled=false",
"--log_level=error",
// TODO(CT-1329): Currently, the TestApp framework does not work well with OE,
// since the non-deterministic test app instances does not handle go routines.
"--optimistic-execution-enabled=false",
})

ctx := svrcmd.CreateExecuteContext(parentCtx)

0 comments on commit 8d0570d

Please sign in to comment.