github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/blockchain/v0/codec.go (about) 1 package v0 2 3 import ( 4 amino "github.com/tendermint/go-amino" 5 6 "github.com/tendermint/tendermint/types" 7 ) 8 9 var cdc = amino.NewCodec() 10 11 func init() { 12 RegisterBlockchainMessages(cdc) 13 types.RegisterBlockAmino(cdc) 14 }