erigon-pulse/core/vm/lightclient/iavl/wire.go

18 lines
287 B
Go
Raw Normal View History

package iavl
import (
"github.com/tendermint/go-amino"
)
var cdc = amino.NewCodec()
func init() {
// NOTE: It's important that there be no conflicts here,
// as that would change the canonical representations.
RegisterWire(cdc)
}
func RegisterWire(cdc *amino.Codec) {
// TODO
}