mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 09:41:38 +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()
|
||
|
}
|