diff --git a/types/src/proof/definition.rs b/types/src/proof/definition.rs index 2e14d9a8b7554..18d893ea9506f 100644 --- a/types/src/proof/definition.rs +++ b/types/src/proof/definition.rs @@ -575,12 +575,12 @@ impl AccumulatorConsistencyProof { /// left and `Y` and `Z` on the right. #[derive(Clone, Deserialize, Serialize)] pub struct AccumulatorRangeProof { - /// 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, - /// 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, phantom: PhantomData,