mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
12 lines
141 B
Go
12 lines
141 B
Go
package pex
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
)
|
|
|
|
var cdc *amino.Codec = amino.NewCodec()
|
|
|
|
func init() {
|
|
RegisterPexMessage(cdc)
|
|
}
|