Skip to content

Commit

Permalink
remove duplicated imports
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele committed Jun 2, 2024
1 parent 3d9cad6 commit a5dc343
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions relay/lcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
"github.com/cosmos/ibc-go/v8/modules/core/exported"
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
mapset "github.com/deckarep/golang-set/v2"
"github.com/hyperledger-labs/yui-relayer/core"
Expand Down Expand Up @@ -482,7 +481,7 @@ func (pr *Prover) doQueryELC(elcClientID string) (*QueryELCResult, error) {
return &result, nil
}

func (pr *Prover) createELC(elcClientID string, height exported.Height) (*elc.MsgCreateClientResponse, error) {
func (pr *Prover) createELC(elcClientID string, height ibcexported.Height) (*elc.MsgCreateClientResponse, error) {
res, err := pr.lcpServiceClient.Client(context.TODO(), &elc.QueryClientRequest{ClientId: elcClientID})
if err != nil {
return nil, err
Expand Down

0 comments on commit a5dc343

Please sign in to comment.