mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-28 21:51:22 +00:00
14 lines
208 B
Go
14 lines
208 B
Go
package conn
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
"github.com/tendermint/tendermint/crypto"
|
|
)
|
|
|
|
var cdc *amino.Codec = amino.NewCodec()
|
|
|
|
func init() {
|
|
crypto.RegisterAmino(cdc)
|
|
RegisterPacket(cdc)
|
|
}
|