17 lines
242 B
Go
Raw Normal View History

package main
import (
"fmt"
2018-07-02 14:20:27 -04:00
"os"
2018-07-02 14:20:27 -04:00
amino "github.com/tendermint/go-amino"
crypto "github.com/tendermint/tendermint/crypto"
)
func main() {
2018-07-02 14:20:27 -04:00
cdc := amino.NewCodec()
crypto.RegisterAmino(cdc)
cdc.PrintTypes(os.Stdout)
fmt.Println("")
}