From 6ace08b5051e809878108c076625ac18957e7cda Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Tue, 23 Oct 2018 11:44:47 -0700 Subject: [PATCH] Remove shorthand --- client/keys/show.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/keys/show.go b/client/keys/show.go index fe86418312..6c1c97c224 100644 --- a/client/keys/show.go +++ b/client/keys/show.go @@ -50,7 +50,7 @@ func showKeysCmd() *cobra.Command { cmd.Flags().String(FlagBechPrefix, "acc", "The Bech32 prefix encoding for a key (acc|val|cons)") cmd.Flags().Bool(FlagAddress, false, "output the address only (overrides --output)") cmd.Flags().Bool(FlagPublicKey, false, "output the public key only (overrides --output)") - cmd.Flags().UintP(flagMultiSigThreshold, "m", 1, "K out of N required signatures") + cmd.Flags().Uint(flagMultiSigThreshold, 1, "K out of N required signatures") return cmd }