Skip to content

Commit af63bc0

Browse files
committed
fix wrong configuration
1 parent dc29c8c commit af63bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/prover-bin/src/zk_circuits_handler/universal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl UniversalHandler {
1919
pub fn new(workspace_path: impl AsRef<Path>, is_openvm_v13: bool) -> Result<Self> {
2020
let path_app_exe = workspace_path.as_ref().join("app.vmexe");
2121
let path_app_config = workspace_path.as_ref().join("openvm.toml");
22-
let segment_len = Some((1 << 21) - 100);
22+
let segment_len = Some((1 << 22) - 100);
2323
let config = ProverConfig {
2424
path_app_config,
2525
path_app_exe,

0 commit comments

Comments
 (0)