diff --git a/protocol/app/app.go b/protocol/app/app.go index 4938eeb0ba..8c9846de11 100644 --- a/protocol/app/app.go +++ b/protocol/app/app.go @@ -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) @@ -407,6 +403,7 @@ func New( // Enable optimistic block execution. if appFlags.OptimisticExecutionEnabled { + logger.Info("optimistic execution is enabled.") baseAppOptions = append(baseAppOptions, baseapp.SetOptimisticExecution()) }