Skip to content

Commit

Permalink
fix test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dloghin committed Jul 1, 2024
1 parent 436851f commit beb6e11
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions plonky2/src/hash/poseidon_bn128_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4197,9 +4197,8 @@ impl ElementBN128 {

#[inline]
fn mul64trunc(self, a: u64, b: u64) -> u64 {
// let c128: u128 = (a as u128) * (b as u128);
// c128 as u64
a * b
let c128: u128 = (a as u128) * (b as u128);
c128 as u64
}

#[inline]
Expand Down

0 comments on commit beb6e11

Please sign in to comment.