Interface UncheckedListProof
-
- All Known Implementing Classes:
UncheckedListProofAdapter
public interface UncheckedListProof
A proof that some elements exist in a proof list. You mustcheck()
its structure and root hash before accessing the elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CheckedListProof
check()
Checks that a proof has either correct or incorrect structure and returns a CheckedListProof.ListProofNode
getRootProofNode()
Returns raw source proof of this UncheckedListProof.
-
-
-
Method Detail
-
check
CheckedListProof check()
Checks that a proof has either correct or incorrect structure and returns a CheckedListProof.
-
getRootProofNode
ListProofNode getRootProofNode()
Returns raw source proof of this UncheckedListProof.
-
-