Merge PR #3983: Fix Flag Typo
This commit is contained in:
parent
ea46da7126
commit
9cf9e6fff6
|
@ -81,7 +81,7 @@ func PostCommands(cmds ...*cobra.Command) []*cobra.Command {
|
||||||
for _, c := range cmds {
|
for _, c := range cmds {
|
||||||
c.Flags().Bool(FlagIndentResponse, false, "Add indent to JSON response")
|
c.Flags().Bool(FlagIndentResponse, false, "Add indent to JSON response")
|
||||||
c.Flags().String(FlagFrom, "", "Name or address of private key with which to sign")
|
c.Flags().String(FlagFrom, "", "Name or address of private key with which to sign")
|
||||||
c.Flags().Uint64P(FlagAccountNumber, "a", 0, "The account number number of the signing account (offline mode only)")
|
c.Flags().Uint64P(FlagAccountNumber, "a", 0, "The account number of the signing account (offline mode only)")
|
||||||
c.Flags().Uint64P(FlagSequence, "s", 0, "The sequence number of the signing account (offline mode only)")
|
c.Flags().Uint64P(FlagSequence, "s", 0, "The sequence number of the signing account (offline mode only)")
|
||||||
c.Flags().String(FlagMemo, "", "Memo to send along with transaction")
|
c.Flags().String(FlagMemo, "", "Memo to send along with transaction")
|
||||||
c.Flags().String(FlagFees, "", "Fees to pay along with transaction; eg: 10uatom")
|
c.Flags().String(FlagFees, "", "Fees to pay along with transaction; eg: 10uatom")
|
||||||
|
|
Loading…
Reference in New Issue