chore: simplify process

This commit is contained in:
darshankabariya 2025-04-17 17:50:18 +05:30
parent 4b14b0711e
commit 987cf6cc05

View File

@ -375,7 +375,7 @@ method generateProof*(
g.merkleProofCache.reverse()
var i = 0
while i + 31 < g.merkleProofCache.len:
for j in countdown(32, 1):
for j in countdown(31, 0):
path_elements.add(g.merkleProofCache[i+j])
i += 32