Skip to content

Commit 6f25b8e

Browse files
committed
fix: build + linting
1 parent a02ec51 commit 6f25b8e

File tree

4 files changed

+3
-11
lines changed

4 files changed

+3
-11
lines changed

modules/apps/27-interchain-accounts/types/codec.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
sdk "github.com/cosmos/cosmos-sdk/types"
88
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
99
"github.com/cosmos/gogoproto/proto"
10-
"github.com/cosmos/ibc-go/v7/modules/core/exported"
1110
)
1211

1312
// ModuleCdc references the global interchain accounts module codec. Note, the codec

modules/apps/27-interchain-accounts/types/codec_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
package types_test
22

33
import (
4-
"fmt"
5-
64
"github.com/cosmos/cosmos-sdk/codec"
75
sdk "github.com/cosmos/cosmos-sdk/types"
86
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
97
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
108
"github.com/cosmos/gogoproto/proto"
119

1210
"github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types"
13-
"github.com/cosmos/ibc-go/v7/modules/core/exported"
1411
"github.com/cosmos/ibc-go/v7/testing/simapp"
1512
)
1613

modules/apps/transfer/types/codec.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ package types
33
import (
44
"bytes"
55

6-
"github.com/cosmos/cosmos-sdk/x/authz"
7-
"github.com/cosmos/gogoproto/jsonpb"
8-
"github.com/cosmos/gogoproto/proto"
9-
"github.com/cosmos/ibc-go/v7/modules/core/exported"
10-
116
"github.com/cosmos/cosmos-sdk/codec"
127
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
138
sdk "github.com/cosmos/cosmos-sdk/types"
149
"github.com/cosmos/cosmos-sdk/types/msgservice"
10+
"github.com/cosmos/cosmos-sdk/x/authz"
11+
"github.com/cosmos/gogoproto/jsonpb"
12+
"github.com/cosmos/gogoproto/proto"
1513
)
1614

1715
// RegisterLegacyAminoCodec registers the necessary x/ibc transfer interfaces and concrete types

modules/core/types/codec.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types"
88
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
99
commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types"
10-
"github.com/cosmos/ibc-go/v7/modules/core/exported"
1110
localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost"
1211
)
1312

@@ -19,5 +18,4 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
1918
channeltypes.RegisterInterfaces(registry)
2019
commitmenttypes.RegisterInterfaces(registry)
2120
localhost.RegisterInterfaces(registry)
22-
exported.RegisterInterfaces(registry)
2321
}

0 commit comments

Comments
 (0)