mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 04:03:49 +00:00
e328049353
* save * save * save * save * save * save
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
|
|
}
|