From b13983815e5b3a0fbeed0e7da0edec751beac270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veljko=20Vrani=C4=87?= Date: Tue, 5 Nov 2024 16:45:44 +0100 Subject: [PATCH] fix the comment on MultiPath (#157) --- crypto-primitives/src/merkle_tree/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto-primitives/src/merkle_tree/mod.rs b/crypto-primitives/src/merkle_tree/mod.rs index 1a40045..0e48e94 100644 --- a/crypto-primitives/src/merkle_tree/mod.rs +++ b/crypto-primitives/src/merkle_tree/mod.rs @@ -218,10 +218,10 @@ impl Path

{ /// [A] /// / \ /// [B] C -/// / \ / \ -/// D [E] F H -/// / \ / \ .... -/// [I]J L M +/// / \ / \ +/// D [E] F H +/// ... / \ / \ .... +/// [I] J L M /// ``` /// Suppose we want to prove I and J, then: /// `leaf_indexes` is: `[2,3]` (indexes in Merkle Tree leaves vector)