Skip to content

Commit

Permalink
Fix is_signed use
Browse files Browse the repository at this point in the history
  • Loading branch information
aakoshh committed Jan 8, 2025
1 parent 8f24dba commit 02eb6ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@ impl<'block> BrilligBlock<'block> {
) {
let bit_size = left.bit_size;

if bit_size == FieldElement::max_num_bits() || !is_signed {
if bit_size == FieldElement::max_num_bits() || is_signed {
return;
}

Expand Down

0 comments on commit 02eb6ea

Please sign in to comment.