1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-19 08:01:22 +00:00
Files
tendermint/lite/proxy/proof.go

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
}