fix!: update gentx val pub key input parsing (#9827)

This commit is contained in:
Aleksandr Bezobchuk
2021-08-02 11:06:24 -04:00
committed by GitHub
parent 56589f1cc8
commit cbac7fc248
5 changed files with 47 additions and 9 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ func FlagSetAmount() *flag.FlagSet {
// FlagSetPublicKey Returns the flagset for Public Key related operations.
func FlagSetPublicKey() *flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)
fs.String(FlagPubKey, "", "The Bech32 encoded PubKey of the validator")
fs.String(FlagPubKey, "", "The validator's Protobuf JSON encoded public key")
return fs
}