mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-27 10:24:36 +00:00
17 lines
203 B
Go
17 lines
203 B
Go
package merkle
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
)
|
|
|
|
var cdc *amino.Codec
|
|
|
|
func init() {
|
|
cdc = amino.NewCodec()
|
|
RegisterWire(cdc)
|
|
}
|
|
|
|
func RegisterWire(cdc *amino.Codec) {
|
|
// Nothing to do.
|
|
}
|