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.

16 lines
267 B

  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. amino "github.com/tendermint/go-amino"
  6. cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
  7. )
  8. func main() {
  9. cdc := amino.NewCodec()
  10. cryptoAmino.RegisterAmino(cdc)
  11. cdc.PrintTypes(os.Stdout)
  12. fmt.Println("")
  13. }