Return errors from cmd functions instead of printing

This commit is contained in:
Matt Bell 2017-01-03 10:53:14 -08:00
parent 86a6deba3f
commit cd6fa3018c
1 changed files with 3 additions and 6 deletions

View File

@ -215,8 +215,7 @@ func cmdAppendTx(c *cli.Context) error {
}
txBytes, err := stringOrHexToBytes(c.Args()[0])
if err != nil {
fmt.Println(err.Error())
return nil
return err
}
res := client.AppendTxSync(txBytes)
printResponse(c, res, string(res.Data), true)
@ -231,8 +230,7 @@ func cmdCheckTx(c *cli.Context) error {
}
txBytes, err := stringOrHexToBytes(c.Args()[0])
if err != nil {
fmt.Println(err.Error())
return nil
return err
}
res := client.CheckTxSync(txBytes)
printResponse(c, res, string(res.Data), true)
@ -254,8 +252,7 @@ func cmdQuery(c *cli.Context) error {
}
queryBytes, err := stringOrHexToBytes(c.Args()[0])
if err != nil {
fmt.Println(err.Error())
return nil
return err
}
res := client.QuerySync(queryBytes)
printResponse(c, res, string(res.Data), true)