github.com/adoriasoft/tendermint@v0.34.0-dev1.0.20200722151356-96d84601a75a/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  )