Skip to content

Commit

Permalink
Change the default max_line_size_per_file value.
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Jul 3, 2024
1 parent f9a080d commit adc7eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ pub fn gen_evm_verifier<C: CircuitExt<Fr>>(
let mut reader = BufReader::new(f);
VerifyingKey::<G1Affine>::read::<_, C>(&mut reader, SerdeFormat::RawBytesUnchecked).unwrap()
};
let max_line_size_per_file = max_line_size_per_file.unwrap_or(100 * 1000);
let max_line_size_per_file = max_line_size_per_file.unwrap_or(90 * 1000);
if PathBuf::new().join(sols_dir).exists() {
fs::remove_dir_all(sols_dir).unwrap();
}
Expand Down

0 comments on commit adc7eb3

Please sign in to comment.