From cf9c4c17b69a3f030f94772d0003eb9499f1e67e Mon Sep 17 00:00:00 2001 From: Juan Leni Date: Thu, 21 Feb 2019 16:43:01 +0100 Subject: [PATCH] reordering imports after rebasing --- client/keys/show.go | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/client/keys/show.go b/client/keys/show.go index 93d49b333408..1dbd8c34a7e6 100644 --- a/client/keys/show.go +++ b/client/keys/show.go @@ -1,24 +1,20 @@ package keys import ( + "errors" "fmt" "github.com/cosmos/cosmos-sdk/crypto" "github.com/cosmos/cosmos-sdk/crypto/keys" - "github.com/cosmos/cosmos-sdk/types/rest" - - "errors" + "github.com/cosmos/cosmos-sdk/crypto/keys/hd" + sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/gorilla/mux" "github.com/spf13/cobra" "github.com/spf13/viper" tmcrypto "github.com/tendermint/tendermint/crypto" "github.com/tendermint/tendermint/crypto/multisig" "github.com/tendermint/tendermint/libs/cli" - - "github.com/cosmos/cosmos-sdk/crypto/keys/keyerror" - sdk "github.com/cosmos/cosmos-sdk/types" ) const ( @@ -176,9 +172,3 @@ func getBechKeyOut(bechPrefix string) (bechKeyOutFn, error) { return nil, fmt.Errorf("invalid Bech32 prefix encoding provided: %s", bechPrefix) } - - "github.com/cosmos/cosmos-sdk/crypto/keys/hd" - "github.com/cosmos/cosmos-sdk/crypto/keys/keyerror" - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/types/rest" - "github.com/gorilla/mux" \ No newline at end of file