1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-22 09:21:32 +00:00
Files
.circleci
.github
DOCKER
abci
benchmarks
blockchain
cmd
config
consensus
types
height_vote_set.go
height_vote_set_test.go
peer_round_state.go
round_state.go
round_state_test.go
wire.go
README.md
byzantine_test.go
common_test.go
mempool_test.go
metrics.go
reactor.go
reactor_test.go
replay.go
replay_file.go
replay_test.go
state.go
state_test.go
ticker.go
version.go
wal.go
wal_fuzz.go
wal_generator.go
wal_test.go
wire.go
crypto
docs
evidence
libs
lite
mempool
networks
node
p2p
privval
proxy
rpc
scripts
state
test
tools
types
version
.editorconfig
.gitignore
CHANGELOG.md
CHANGELOG_PENDING.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.md
ROADMAP.md
SECURITY.md
UPGRADING.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
tendermint/consensus/types/wire.go

13 lines
178 B
Go
Raw Normal View History

package types
import (
"github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
func init() {
2018-07-26 18:08:09 -07:00
types.RegisterBlockAmino(cdc)
}