diff --git a/go.mod b/go.mod index 18832c9935..36ef7f93e1 100644 --- a/go.mod +++ b/go.mod @@ -43,6 +43,7 @@ require ( github.com/gobuffalo/genny/v2 v2.1.0 github.com/gobuffalo/packd v1.0.2 github.com/gobuffalo/plush/v4 v4.1.19 + github.com/gobwas/glob v0.2.3 github.com/goccy/go-yaml v1.11.3 github.com/golangci/golangci-lint v1.57.2 github.com/google/go-github/v48 v48.2.0 @@ -246,7 +247,6 @@ require ( github.com/gobuffalo/logger v1.0.7 // indirect github.com/gobuffalo/tags/v3 v3.1.4 // indirect github.com/gobuffalo/validate/v3 v3.3.3 // indirect - github.com/gobwas/glob v0.2.3 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/gofrs/flock v0.8.1 // indirect github.com/gofrs/uuid v4.4.0+incompatible // indirect diff --git a/ignite/templates/app/files/app/ibc.go.plush b/ignite/templates/app/files/app/ibc.go.plush index eaeee2480d..2842a7f83f 100644 --- a/ignite/templates/app/files/app/ibc.go.plush +++ b/ignite/templates/app/files/app/ibc.go.plush @@ -126,6 +126,8 @@ func (app *App) registerIBCModules(appOpts servertypes.AppOptions) error { app.MsgServiceRouter(), authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) + app.ICAHostKeeper.WithQueryRouter(app.GRPCQueryRouter()) + app.ICAControllerKeeper = icacontrollerkeeper.NewKeeper( app.appCodec, app.GetKey(icacontrollertypes.StoreKey),