1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-12 14:57:12 +00:00

15 lines
261 B
Go
Raw 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
}