Skip to content

Commit

Permalink
remove osmosisd from error message
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic committed Jul 15, 2024
1 parent 9c01f7c commit ccb2582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/module_hash.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func getModuleHashesAtHeight[T servertypes.Application](svrCtx *Context, appCrea
home := svrCtx.Config.RootDir
db, err := OpenDB(home, GetAppDBBackend(svrCtx.Viper))
if err != nil {
return nil, fmt.Errorf("error opening DB, make sure osmosisd is not running when calling this query: %w", err)
return nil, fmt.Errorf("error opening DB, make sure daemon is not running when calling this query: %w", err)
}
app := appCreator(svrCtx.Logger, db, nil, svrCtx.Viper)
rms, ok := app.CommitMultiStore().(*rootmulti.Store)
Expand Down

0 comments on commit ccb2582

Please sign in to comment.