1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-07-23 00:01:58 +00:00
Files
tendermint/p2p/conn/wire.go

14 lines
246 B
Go
Raw Normal View History

package conn
import (
amino "github.com/tendermint/go-amino"
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
)
var cdc *amino.Codec = amino.NewCodec()
func init() {
cryptoAmino.RegisterAmino(cdc)
RegisterPacket(cdc)
}