1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-13 23:31:19 +00:00

14 lines
213 B
Go
Raw Normal View History

package blockchain
import (
"github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/crypto"
)
var cdc = amino.NewCodec()
func init() {
RegisterBlockchainMessages(cdc)
crypto.RegisterAmino(cdc)
}