Skip to content

Commit

Permalink
small update on plugin file
Browse files Browse the repository at this point in the history
  • Loading branch information
bizk committed Sep 11, 2023
1 parent 1c09529 commit d11650c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/rosetta-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- name: review
run: cat ./plugins/cosmos-hub/main.go
- name: Build Rosetta
Expand Down
8 changes: 4 additions & 4 deletions plugins/cosmos-hub/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +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"
ibcTypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"

ibcLightClient "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
ibcClient "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 @@ -20,8 +20,8 @@ func InitZone() {
}

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

0 comments on commit d11650c

Please sign in to comment.