mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +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
15 lines
261 B
Go
15 lines
261 B
Go
package proxy
|
|
|
|
import (
|
|
"github.com/tendermint/tendermint/crypto/merkle"
|
|
)
|
|
|
|
func defaultProofRuntime() *merkle.ProofRuntime {
|
|
prt := merkle.NewProofRuntime()
|
|
prt.RegisterOpDecoder(
|
|
merkle.ProofOpSimpleValue,
|
|
merkle.SimpleValueOpDecoder,
|
|
)
|
|
return prt
|
|
}
|