chore: simplify process

This commit is contained in:
darshankabariya 2025-04-17 17:50:18 +05:30
parent 53f734e646
commit adb9d2d471

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