Remove shorthand

This commit is contained in:
Alessio Treglia 2018-10-23 11:44:47 -07:00
parent 230c69b438
commit 6ace08b505
No known key found for this signature in database
GPG Key ID: E8A48AE5311D765A
1 changed files with 1 additions and 1 deletions

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
}