Skip to content

Commit

Permalink
fix close
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomedica committed Sep 4, 2024
1 parent a06cc3f commit 8a5018e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions simapp/app_di.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@ func (app *SimApp) Precommiter(ctx sdk.Context) {
// Close implements the Application interface and closes all necessary application
// resources.
func (app *SimApp) Close() error {
if err := app.BaseApp.Close(); err != nil {
return err
}
return app.UnorderedTxManager.Close()
}

Expand Down

0 comments on commit 8a5018e

Please sign in to comment.