Skip to content

Commit bc81d4b

Browse files
author
Mason Liang
committed
Fix comment
1 parent 36344ac commit bc81d4b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/mpt.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ impl MptCircuitConfig {
118118
proofs: &[Proof],
119119
n_rows: usize,
120120
) -> Result<(), Error> {
121-
dbg!(Self::n_rows_required(proofs));
122-
123121
let randomness = self.rlc_randomness.value(layouter);
124122
let (u32s, u64s, u128s, frs) = byte_representations(proofs);
125123

@@ -182,7 +180,7 @@ impl MptCircuitConfig {
182180
pub fn n_rows_required(proofs: &[Proof]) -> usize {
183181
let (u32s, u64s, u128s, frs) = byte_representations(proofs);
184182

185-
// +1 for the final padding row to satisfy the "final mpt update is padding" constraint.
183+
// +1 for the final padding row to satisfy the "final mpt update is padding" constraint.
186184
1 + *[
187185
MptUpdateConfig::n_rows_required(proofs),
188186
CanonicalRepresentationConfig::n_rows_required(&mpt_update_keys(proofs)),

0 commit comments

Comments
 (0)