mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
13 lines
136 B
Go
13 lines
136 B
Go
|
package merkle
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/go-amino"
|
||
|
)
|
||
|
|
||
|
var cdc *amino.Codec
|
||
|
|
||
|
func init() {
|
||
|
cdc = amino.NewCodec()
|
||
|
cdc.Seal()
|
||
|
}
|