Files
tendermint/abci/example/code/code.go
2018-07-10 02:40:34 -07:00

11 lines
227 B
Go

package code
// Return codes for the examples
const (
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeBadNonce uint32 = 2
CodeTypeUnauthorized uint32 = 3
CodeTypeUnknownError uint32 = 4
)