pub fn read_range_proof_check_with_child_on_proving_backend<H>(
    proving_backend: &TrieBackend<MemoryDB<H>, H>,
    start_at: &[Vec<u8>]
) -> Result<(KeyValueStates, usize), Box<dyn Error>>where
    H: Hasher,
    H::Out: Ord + Codec,
Expand description

Check storage range proof on pre-created proving backend.

See read_range_proof_check_with_child.

Examples found in repository?
src/lib.rs (line 1075)
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
	pub fn read_range_proof_check_with_child<H>(
		root: H::Out,
		proof: StorageProof,
		start_at: &[Vec<u8>],
	) -> Result<(KeyValueStates, usize), Box<dyn Error>>
	where
		H: Hasher + 'static,
		H::Out: Ord + Codec,
	{
		let proving_backend = create_proof_check_backend::<H>(root, proof)?;
		read_range_proof_check_with_child_on_proving_backend(&proving_backend, start_at)
	}