2018-03-21 02:27:10 +01:00
|
|
|
package conn
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/tendermint/go-amino"
|
|
|
|
"github.com/tendermint/go-crypto"
|
|
|
|
)
|
|
|
|
|
2018-03-26 06:40:02 +02:00
|
|
|
var cdc *amino.Codec = amino.NewCodec()
|
2018-03-21 02:27:10 +01:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
crypto.RegisterAmino(cdc)
|
|
|
|
RegisterPacket(cdc)
|
|
|
|
}
|