Skip to content

Commit

Permalink
fix upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuang committed Apr 16, 2024
1 parent 5884f66 commit 4d94939
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ func New(
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
)
app.ICAHostKeeper = icahostkeeper.NewKeeper(
appCodec, keys[icahosttypes.StoreKey], app.GetSubspace(icahosttypes.SubModuleName),
appCodec, keys[icahosttypes.StoreKey], ICAHostMockSubspace{},

Check failure on line 560 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

undefined: ICAHostMockSubspace

Check failure on line 560 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

undefined: ICAHostMockSubspace

Check failure on line 560 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

undefined: ICAHostMockSubspace

Check failure on line 560 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

undefined: ICAHostMockSubspace
app.IBCFeeKeeper, // ISC4 Wrapper: fee IBC middleware
app.IBCKeeper.ChannelKeeper, app.IBCKeeper.PortKeeper,
app.AccountKeeper, scopedICAHostKeeper, app.MsgServiceRouter(),
Expand Down Expand Up @@ -1307,7 +1307,6 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino
paramsKeeper.Subspace(ibcexported.ModuleName).WithKeyTable(keyTable)
paramsKeeper.Subspace(ibctransfertypes.ModuleName).WithKeyTable(ibctransfertypes.ParamKeyTable())
paramsKeeper.Subspace(icacontrollertypes.SubModuleName).WithKeyTable(icacontrollertypes.ParamKeyTable())
paramsKeeper.Subspace(icahosttypes.SubModuleName).WithKeyTable(icahosttypes.ParamKeyTable())
paramsKeeper.Subspace(icaauthtypes.ModuleName)
paramsKeeper.Subspace(evmtypes.ModuleName).WithKeyTable(v0evmtypes.ParamKeyTable()) //nolint: staticcheck
paramsKeeper.Subspace(feemarkettypes.ModuleName).WithKeyTable(feemarkettypes.ParamKeyTable())
Expand Down

0 comments on commit 4d94939

Please sign in to comment.