Run make format

This commit is contained in:
Alessio Treglia 2018-10-22 13:37:28 -07:00
parent 50a2f9641b
commit 8d24465845
No known key found for this signature in database
GPG Key ID: E8A48AE5311D765A
1 changed files with 10 additions and 11 deletions

View File

@ -6,13 +6,13 @@ import (
"github.com/tendermint/tendermint/crypto"
"net/http"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/gorilla/mux"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tendermint/tendermint/libs/cli"
"github.com/tendermint/tendermint/crypto/multisig"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/tendermint/tendermint/libs/cli"
)
const (
@ -38,7 +38,6 @@ func (m multiSigKey) GetType() keys.KeyType { return keys.TypeLocal }
func (m multiSigKey) GetPubKey() crypto.PubKey { return m.key }
func (m multiSigKey) GetAddress() sdk.AccAddress { return sdk.AccAddress(m.key.Address()) }
func showKeysCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "show [name]",