13 lines
167 B
Go
Raw Normal View History

2018-04-27 10:00:34 -04:00
package types
import (
"github.com/tendermint/go-amino"
"github.com/tendermint/go-crypto"
)
var cdc = amino.NewCodec()
func init() {
crypto.RegisterAmino(cdc)
}