From fa0bc4885507fe0b3f13a8cc43bc6d7bdfa1d9f8 Mon Sep 17 00:00:00 2001 From: M Alghazwi Date: Thu, 3 Jul 2025 09:23:53 +0200 Subject: [PATCH] fix comment --- codex-plonky2-circuits/src/circuits/merkle_circuit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-plonky2-circuits/src/circuits/merkle_circuit.rs b/codex-plonky2-circuits/src/circuits/merkle_circuit.rs index ea02916..1ea6c6b 100755 --- a/codex-plonky2-circuits/src/circuits/merkle_circuit.rs +++ b/codex-plonky2-circuits/src/circuits/merkle_circuit.rs @@ -170,7 +170,7 @@ impl< } - // select the right layer using the mask bits + // select the right layer using the corrected mask bits let mut reconstructed_root = HashOutTarget::from_vec([zero;4].to_vec()); for k in 0..max_depth { let diff = builder.sub(mask_bit_corrected[k].target, mask_bit_corrected[k+1].target);