mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
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
|
||
|
}
|