Skip to content

Commit

Permalink
trying to solve untracked file issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bizk committed Sep 11, 2023
1 parent 2c72368 commit 1c09529
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions plugins/cosmos-hub/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ package main
import (
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"

ibcLightClient "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"

sdk "github.com/cosmos/cosmos-sdk/types"
txtypes "github.com/cosmos/cosmos-sdk/types/tx"
Expand All @@ -17,8 +20,8 @@ func InitZone() {
}

func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
// ibcclienttypes.RegisterInterfaces(registry)
// ibcLightClient.RegisterInterfaces(registry)
ibcclienttypes.RegisterInterfaces(registry)
ibcLightClient.RegisterInterfaces(registry)
sdk.RegisterInterfaces(registry)
txtypes.RegisterInterfaces(registry)
cryptocodec.RegisterInterfaces(registry)
Expand Down

0 comments on commit 1c09529

Please sign in to comment.