mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-29 06:01:21 +00:00
* first commit finalize rebase add protoc_merkle to Makefile * in progress * fix kvstore * fix tests * remove iavl dependency * fix tx_test * fix test_abci_cli fix test_apps * fix test_apps * fix test_cover * rm rebase residue * address comment in progress * finalize rebase
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()
|
|
}
|