Browse Source

abci-cli: print OK if code is 0

pull/1780/head
Ethan Buchman 7 years ago
parent
commit
ed393f9934
2 changed files with 7 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +6
    -1
      cmd/abci-cli/abci-cli.go

+ 1
- 0
CHANGELOG.md View File

@ -12,6 +12,7 @@ BREAKING CHANGES:
- [types] switched to using `gogo/protobuf` for code generation
- [types] use `customtype` feature of `gogo/protobuf` to replace `[]byte` with `data.Bytes` in all generated types :)
- this eliminates the need for additional types like ResultQuery
- [abci-cli] codes are printed as their number instead of a message, except for `code == 0`, which is still printed as `OK`
FEATURES:
- [types] added Tags field to ResponseDeliverTx


+ 6
- 1
cmd/abci-cli/abci-cli.go View File

@ -516,7 +516,12 @@ func printResponse(cmd *cobra.Command, args []string, rsp response) {
}
// Always print the status code.
fmt.Printf("-> code: %d\n", rsp.Code)
if rsp.Code == types.CodeTypeOK {
fmt.Printf("-> code: OK\n")
} else {
fmt.Printf("-> code: %d\n", rsp.Code)
}
if len(rsp.Data) != 0 {
// Do no print this line when using the commit command


Loading…
Cancel
Save