From e4c3483f9c79527079ddafc3be38eab51efd8455 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Tue, 24 Sep 2019 08:50:12 -0700 Subject: [PATCH] Goimports --- client/keys/migrate.go | 1 + client/keys/migrate_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/client/keys/migrate.go b/client/keys/migrate.go index 73f2169339e6..8e7e0a36d101 100644 --- a/client/keys/migrate.go +++ b/client/keys/migrate.go @@ -7,6 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/input" "github.com/cosmos/cosmos-sdk/crypto/keys" "github.com/cosmos/cosmos-sdk/types" + "github.com/spf13/cobra" "github.com/spf13/viper" ) diff --git a/client/keys/migrate_test.go b/client/keys/migrate_test.go index 794680d819de..61a55ef90804 100644 --- a/client/keys/migrate_test.go +++ b/client/keys/migrate_test.go @@ -3,13 +3,13 @@ package keys import ( "testing" - "github.com/spf13/viper" - "github.com/tendermint/tendermint/libs/cli" + "github.com/cosmos/cosmos-sdk/client/flags" + "github.com/cosmos/cosmos-sdk/tests" + "github.com/spf13/viper" "github.com/stretchr/testify/assert" - "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/cosmos/cosmos-sdk/tests" + "github.com/tendermint/tendermint/libs/cli" ) func Test_runMigrateCmd(t *testing.T) {