Skip to content

Commit ef4dbc7

Browse files
committed
Fix regression verify constraints
1 parent db68822 commit ef4dbc7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

proofman/src/proofman.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,8 @@ where
12591259
let debug_info: &DebugInfo = match debug_info {
12601260
Some(di) => di,
12611261
None => {
1262-
default_debug = DebugInfo { verify_constraints: true, ..DebugInfo::default() };
1262+
default_debug =
1263+
DebugInfo { verify_constraints: true, verify_global_constraints: true, ..DebugInfo::default() };
12631264
&default_debug
12641265
}
12651266
};

0 commit comments

Comments
 (0)