tendermint/example/code/code.go

10 lines
193 B
Go
Raw Normal View History

2017-11-30 12:37:31 -08:00
package code
// Return codes for the examples
const (
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeBadNonce uint32 = 2
CodeTypeUnauthorized uint32 = 3
)