github.com/number571/tendermint@v0.34.11-gost/abci/example/code/code.go (about) 1 package code 2 3 // Return codes for the examples 4 const ( 5 CodeTypeOK uint32 = 0 6 CodeTypeEncodingError uint32 = 1 7 CodeTypeBadNonce uint32 = 2 8 CodeTypeUnauthorized uint32 = 3 9 CodeTypeUnknownError uint32 = 4 10 )