File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,6 @@ impl MptCircuitConfig {
118
118
proofs : & [ Proof ] ,
119
119
n_rows : usize ,
120
120
) -> Result < ( ) , Error > {
121
- dbg ! ( Self :: n_rows_required( proofs) ) ;
122
-
123
121
let randomness = self . rlc_randomness . value ( layouter) ;
124
122
let ( u32s, u64s, u128s, frs) = byte_representations ( proofs) ;
125
123
@@ -182,7 +180,7 @@ impl MptCircuitConfig {
182
180
pub fn n_rows_required ( proofs : & [ Proof ] ) -> usize {
183
181
let ( u32s, u64s, u128s, frs) = byte_representations ( proofs) ;
184
182
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.
186
184
1 + * [
187
185
MptUpdateConfig :: n_rows_required ( proofs) ,
188
186
CanonicalRepresentationConfig :: n_rows_required ( & mpt_update_keys ( proofs) ) ,
You can’t perform that action at this time.
0 commit comments