Remove shorthand

This commit is contained in:
Alessio Treglia
2018-10-23 11:44:47 -07:00
parent 230c69b438
commit 6ace08b505
+1 -1
View File
@@ -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
}