mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-17 07:01:20 +00:00
.circleci
.github
DOCKER
abci
client
cmd
example
code
code.go
counter
js
kvstore
python
python3
example.go
example_test.go
server
tests
types
version
README.md
benchmarks
blockchain
cmd
config
consensus
crypto
docs
evidence
libs
lite
mempool
networks
node
p2p
privval
proxy
rpc
scripts
state
test
types
version
.editorconfig
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.md
ROADMAP.md
SECURITY.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
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
|
||
|
)
|