Skip to content

Commit

Permalink
MSM/Serialization: fix number of intermediate limbs required
Browse files Browse the repository at this point in the history
We need 80 bits
  • Loading branch information
dannywillems committed Feb 29, 2024
1 parent 995304a commit 560dc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msm/src/serialization/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// The number of intermediate limbs of 4 bits required for the circuit
pub const N_INTERMEDIATE_LIMBS: usize = 19;
pub const N_INTERMEDIATE_LIMBS: usize = 20;

pub mod constraints;
pub mod interpreter;
Expand Down

0 comments on commit 560dc4c

Please sign in to comment.