Skip to content

Commit

Permalink
add call
Browse files Browse the repository at this point in the history
  • Loading branch information
kocubinski committed Oct 25, 2024
1 parent ff0fa66 commit 9e60b5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion simapp/v2/app_di.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func NewSimApp[T transaction.Tx](

app.store = storeBuilder.Get()
if app.store == nil {
return nil, fmt.Errorf("store builder not return a db")
return nil, fmt.Errorf("store builder did not return a db")
}

/**** Module Options ****/
Expand Down
1 change: 1 addition & 0 deletions simapp/v2/simdv2/cmd/root_di.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func NewRootCmd[T transaction.Tx](
SilenceErrors: true,
PersistentPreRunE: rootCommandPersistentPreRun(clientCtx),
}
factory.EnhanceCommand(rootCommand)
factory.EnhanceCommandContext(rootCommand)
_, err = initRootCmd(rootCommand, logger, commandDeps)
if err != nil {
Expand Down

0 comments on commit 9e60b5e

Please sign in to comment.