package core_types import ( "github.com/tendermint/go-amino" "github.com/tendermint/go-crypto" "github.com/tendermint/tendermint/types" ) func RegisterAmino(cdc *amino.Codec) { types.RegisterEventDatas(cdc) types.RegisterEvidences(cdc) crypto.RegisterAmino(cdc) }