Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions types/src/proof/definition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -575,12 +575,12 @@ impl AccumulatorConsistencyProof {
/// left and `Y` and `Z` on the right.
#[derive(Clone, Deserialize, Serialize)]
pub struct AccumulatorRangeProof<H> {
/// The siblings on the left of the path from the first leaf to the root. Siblings near the root
/// are at the beginning of the vector.
/// The siblings on the left of the path from the first leaf to the root. Siblings are ordered
/// from the bottom level to the root level.
left_siblings: Vec<HashValue>,

/// The sliblings on the right of the path from the last leaf to the root. Siblings near the root
/// are at the beginning of the vector.
/// The sliblings on the right of the path from the last leaf to the root. Siblings are ordered
/// from the bottom level to the root level.
right_siblings: Vec<HashValue>,

phantom: PhantomData<H>,
Expand Down
Loading