Skip to content

Commit

Permalink
reordering imports after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni committed Feb 21, 2019
1 parent 325e6ac commit cf9c4c1
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions client/keys/show.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down Expand Up @@ -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"

0 comments on commit cf9c4c1

Please sign in to comment.