Skip to content

Commit

Permalink
[OTE-573] Remove experimental warning log for OE (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyding authored Jul 29, 2024
1 parent 9d56ab8 commit ac1e4f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions protocol/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,10 +390,6 @@ func New(
if err := appFlags.Validate(); err != nil {
panic(err)
}
if appFlags.OptimisticExecutionEnabled {
// TODO(OTE-573): Remove warning once OE is fully supported.
logger.Warn("Optimistic execution is enabled. This is a test feature not intended for production use!")
}

initDatadogProfiler(logger, appFlags.DdAgentHost, appFlags.DdTraceAgentPort)

Expand All @@ -407,6 +403,7 @@ func New(

// Enable optimistic block execution.
if appFlags.OptimisticExecutionEnabled {
logger.Info("optimistic execution is enabled.")
baseAppOptions = append(baseAppOptions, baseapp.SetOptimisticExecution())
}

Expand Down

0 comments on commit ac1e4f7

Please sign in to comment.