mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 23:02:16 +00:00
14 lines
200 B
Go
14 lines
200 B
Go
package conn
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
"github.com/tendermint/go-crypto"
|
|
)
|
|
|
|
var cdc *amino.Codec = amino.NewCodec()
|
|
|
|
func init() {
|
|
crypto.RegisterAmino(cdc)
|
|
RegisterPacket(cdc)
|
|
}
|