fixes, add to changelog

This commit is contained in:
rigelrozanski
2018-03-04 17:21:37 +00:00
parent a2e4479dcc
commit fb199e293e
5 changed files with 31 additions and 8 deletions
+2 -6
View File
@@ -15,10 +15,8 @@ import (
)
const (
flagTo = "to"
flagAmount = "amount"
flagFee = "fee"
flagSequence = "seq"
flagTo = "to"
flagAmount = "amount"
)
// SendTxCommand will create a send tx and sign it with the given key
@@ -31,8 +29,6 @@ func SendTxCmd(cdc *wire.Codec) *cobra.Command {
}
cmd.Flags().String(flagTo, "", "Address to send coins")
cmd.Flags().String(flagAmount, "", "Amount of coins to send")
cmd.Flags().String(flagFee, "", "Fee to pay along with transaction")
cmd.Flags().Int64(flagSequence, 0, "Sequence number to sign the tx")
return cmd
}