Browse Source

RetCodeEncodingError

pull/1780/head
Ethan Buchman 9 years ago
committed by Jae Kwon
parent
commit
a357f3156a
3 changed files with 4 additions and 3 deletions
  1. +1
    -1
      cmd/tmsp/cli.go
  2. +1
    -0
      types/retcode.go
  3. +2
    -2
      types/retcode_string.go

+ 1
- 1
cmd/tmsp/cli.go View File

@ -204,7 +204,7 @@ func cmdAppendTx(c *cli.Context) {
if err != nil {
Exit(err.Error())
}
fmt.Println("Sent tx:", txString, "response:", res)
fmt.Println("Response:", res)
}
// Get application Merkle root hash


+ 1
- 0
types/retcode.go View File

@ -13,6 +13,7 @@ const (
RetCodeUnauthorized RetCode = 2
RetCodeInsufficientFees RetCode = 3
RetCodeUnknownRequest RetCode = 4
RetCodeEncodingError RetCode = 5
)
func (r RetCode) Error() error {


+ 2
- 2
types/retcode_string.go View File

@ -4,9 +4,9 @@ package types
import "fmt"
const _RetCode_name = "RetCodeOKRetCodeInternalErrorRetCodeUnauthorizedRetCodeInsufficientFeesRetCodeUnknownRequest"
const _RetCode_name = "RetCodeOKRetCodeInternalErrorRetCodeUnauthorizedRetCodeInsufficientFeesRetCodeUnknownRequestRetCodeEncodingError"
var _RetCode_index = [...]uint8{0, 9, 29, 48, 71, 92}
var _RetCode_index = [...]uint8{0, 9, 29, 48, 71, 92, 112}
func (i RetCode) String() string {
if i < 0 || i+1 >= RetCode(len(_RetCode_index)) {


Loading…
Cancel
Save