erigon-pulse/core/vm/lightclient/iavl/wire.go
Alex Sharov e328049353
Remove dependency on leveldb (#4213)
* save

* save

* save

* save

* save

* save
2022-05-20 11:24:28 +07:00

18 lines
287 B
Go

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
}