From 1c09529a113bd1356ae240e9085625265ea43eca Mon Sep 17 00:00:00 2001 From: bizk Date: Mon, 11 Sep 2023 15:02:26 -0300 Subject: [PATCH] trying to solve untracked file issue --- plugins/cosmos-hub/main.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/cosmos-hub/main.go b/plugins/cosmos-hub/main.go index 449bcb1..f0e07c5 100644 --- a/plugins/cosmos-hub/main.go +++ b/plugins/cosmos-hub/main.go @@ -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" @@ -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)