mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 15:22:15 +00:00
12 lines
226 B
Go
12 lines
226 B
Go
package code
|
|
|
|
// Return codes for the examples
|
|
const (
|
|
CodeTypeOK uint32 = 0
|
|
CodeTypeEncodingError uint32 = 1
|
|
CodeTypeBadNonce uint32 = 2
|
|
CodeTypeUnauthorized uint32 = 3
|
|
|
|
CodeTypeBadOption uint32 = 101
|
|
)
|