mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
18 lines
287 B
Go
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
|
||
|
}
|