1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-05 17:41:20 +00:00

15 lines
240 B
Go
Raw Normal View History

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