Skip to content

Commit

Permalink
Merge pull request #2 from kjessec/pr/kjessec/36
Browse files Browse the repository at this point in the history
fix to set app at appcreate
  • Loading branch information
beer-1 authored May 3, 2024
2 parents ac585e9 + b1d2728 commit d4f6ce7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/minitiad/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,12 +267,16 @@ func (a *appCreator) AppCreator() servertypes.AppCreator {
wasmOpts = append(wasmOpts, wasmkeeper.WithVMCacheMetrics(prometheus.DefaultRegisterer))
}

return minitiaapp.NewMinitiaApp(
app := minitiaapp.NewMinitiaApp(
logger, db, traceStore, true,
wasmOpts,
appOpts,
baseappOptions...,
)

a.app = app

return app
}
}

Expand Down

0 comments on commit d4f6ce7

Please sign in to comment.