tendermint/consensus/wire.go

15 lines
229 B
Go
Raw Normal View History

2018-04-05 07:05:45 -07:00
package consensus
import (
"github.com/tendermint/go-amino"
"github.com/tendermint/go-crypto"
)
var cdc = amino.NewCodec()
func init() {
RegisterConsensusMessages(cdc)
RegisterWALMessages(cdc)
crypto.RegisterAmino(cdc)
}