mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-30 17:22:13 +00:00
15 lines
205 B
Go
15 lines
205 B
Go
|
package conn
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/go-amino"
|
||
|
"github.com/tendermint/go-crypto"
|
||
|
)
|
||
|
|
||
|
var cdc *amino.Codec
|
||
|
|
||
|
func init() {
|
||
|
cdc = amino.NewCodec()
|
||
|
crypto.RegisterAmino(cdc)
|
||
|
RegisterPacket(cdc)
|
||
|
}
|