1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-03 02:22:14 +00:00

13 lines
175 B
Go
Raw Normal View History

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