mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-01 17:42:16 +00:00
* Add info to Response[CheckTx/DeliverTx/Query] * Remove code and log from Response[SetOption/Commit]
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
|
|
)
|