You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
280 B

  1. package core_types
  2. import (
  3. "github.com/tendermint/go-amino"
  4. "github.com/tendermint/tendermint/crypto"
  5. "github.com/tendermint/tendermint/types"
  6. )
  7. func RegisterAmino(cdc *amino.Codec) {
  8. types.RegisterEventDatas(cdc)
  9. types.RegisterEvidences(cdc)
  10. crypto.RegisterAmino(cdc)
  11. }