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

View File

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