Skip to content

Commit

Permalink
Run go fmt ./... (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed May 31, 2021
1 parent 4bb1960 commit 4db5fd1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modules/apps/transfer/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/cosmos/ibc-go/modules/apps/transfer/types"
channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types"
host "github.com/cosmos/ibc-go/modules/core/24-host"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
)

// Keeper defines the IBC fungible transfer keeper
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/transfer/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (

"github.com/stretchr/testify/require"

"github.com/cosmos/ibc-go/testing/simapp"
"github.com/cosmos/cosmos-sdk/types/kv"
"github.com/cosmos/ibc-go/modules/apps/transfer/simulation"
"github.com/cosmos/ibc-go/modules/apps/transfer/types"
"github.com/cosmos/ibc-go/testing/simapp"
)

func TestDecodeStore(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion modules/core/02-client/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (

"github.com/stretchr/testify/require"

"github.com/cosmos/ibc-go/testing/simapp"
"github.com/cosmos/cosmos-sdk/types/kv"
"github.com/cosmos/ibc-go/modules/core/02-client/simulation"
"github.com/cosmos/ibc-go/modules/core/02-client/types"
host "github.com/cosmos/ibc-go/modules/core/24-host"
ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types"
"github.com/cosmos/ibc-go/testing/simapp"
)

func TestDecodeStore(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion modules/core/03-connection/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (

"github.com/stretchr/testify/require"

"github.com/cosmos/ibc-go/testing/simapp"
"github.com/cosmos/cosmos-sdk/types/kv"
"github.com/cosmos/ibc-go/modules/core/03-connection/simulation"
"github.com/cosmos/ibc-go/modules/core/03-connection/types"
host "github.com/cosmos/ibc-go/modules/core/24-host"
"github.com/cosmos/ibc-go/testing/simapp"
)

func TestDecodeStore(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion modules/core/04-channel/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (

"github.com/stretchr/testify/require"

"github.com/cosmos/ibc-go/testing/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/kv"
"github.com/cosmos/ibc-go/modules/core/04-channel/simulation"
"github.com/cosmos/ibc-go/modules/core/04-channel/types"
host "github.com/cosmos/ibc-go/modules/core/24-host"
"github.com/cosmos/ibc-go/testing/simapp"
)

func TestDecodeStore(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion modules/core/05-port/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/cosmos/ibc-go/testing/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/ibc-go/modules/core/05-port/keeper"
"github.com/cosmos/ibc-go/testing/simapp"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion modules/core/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import (

"github.com/stretchr/testify/require"

"github.com/cosmos/ibc-go/testing/simapp"
"github.com/cosmos/cosmos-sdk/types/kv"
clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types"
connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types"
channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types"
host "github.com/cosmos/ibc-go/modules/core/24-host"
"github.com/cosmos/ibc-go/modules/core/simulation"
ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types"
"github.com/cosmos/ibc-go/testing/simapp"
)

func TestDecodeStore(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion modules/light-clients/09-localhost/types/localhost_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/ibc-go/testing/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types"
"github.com/cosmos/ibc-go/modules/core/exported"
"github.com/cosmos/ibc-go/testing/simapp"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion testing/simapp/simd/cmd/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/stretchr/testify/require"

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
"github.com/cosmos/ibc-go/testing/simapp"
"github.com/cosmos/ibc-go/testing/simapp/simd/cmd"
"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
)

func TestInitCmd(t *testing.T) {
Expand Down

0 comments on commit 4db5fd1

Please sign in to comment.