1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-04-29 08:42:14 +00:00

15 lines
261 B
Go
Raw Permalink Normal View History

package proxy
import (
"github.com/tendermint/tendermint/crypto/merkle"
)
func defaultProofRuntime() *merkle.ProofRuntime {
prt := merkle.NewProofRuntime()
prt.RegisterOpDecoder(
merkle.ProofOpSimpleValue,
merkle.SimpleValueOpDecoder,
)
return prt
}