Skip to content

Commit

Permalink
fix wasm client
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Sep 24, 2024
1 parent 97ce6b8 commit 58e6cbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions modules/light-clients/08-wasm/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/types/module"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"

Expand Down Expand Up @@ -49,7 +48,7 @@ func (AppModule) RegisterLegacyAminoCodec(registry.AminoRegistrar) {}

// RegisterInterfaces registers module concrete types into protobuf Any. This allows core IBC
// to unmarshal Wasm light client types.
func (AppModule) RegisterInterfaces(reg codectypes.InterfaceRegistry) {
func (AppModule) RegisterInterfaces(reg registry.InterfaceRegistrar) {
types.RegisterInterfaces(reg)
}

Expand Down
1 change: 1 addition & 0 deletions modules/light-clients/08-wasm/testing/simapp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ func NewSimApp(
govtypes.StoreKey, group.StoreKey, paramstypes.StoreKey, ibcexported.StoreKey, upgradetypes.StoreKey, feegrant.StoreKey,
evidencetypes.StoreKey, ibctransfertypes.StoreKey, icacontrollertypes.StoreKey, icahosttypes.StoreKey,
authzkeeper.StoreKey, ibcfeetypes.StoreKey, consensusparamtypes.StoreKey, circuittypes.StoreKey, wasmtypes.StoreKey,
pooltypes.StoreKey, accounts.StoreKey,
)

// register streaming services
Expand Down

0 comments on commit 58e6cbe

Please sign in to comment.