mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
10 lines
193 B
Go
10 lines
193 B
Go
package code
|
|
|
|
// Return codes for the examples
|
|
const (
|
|
CodeTypeOK uint32 = 0
|
|
CodeTypeEncodingError uint32 = 1
|
|
CodeTypeBadNonce uint32 = 2
|
|
CodeTypeUnauthorized uint32 = 3
|
|
)
|