Skip to content

Commit

Permalink
Update k256/src/arithmetic/projective.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
austinabell authored Dec 5, 2024
1 parent 832ca24 commit c2c3d39
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion k256/src/arithmetic/projective.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ impl ProjectivePoint {
let yz_pairs = ((self.y + &self.z) * &(other.y + &other.z)) + &n_yy_zz;
let xz_pairs = ((self.x + &self.z) * &(other.x + &other.z)) + &n_xx_zz;

// TODO can remove these to simplify patch (from bigint1)
if cfg!(all(target_os = "zkvm", target_arch = "riscv32")) {
// Same as below, but using mul_single instead of repeated addition to get small
// multiplications and normalize_weak is removed.
Expand Down

0 comments on commit c2c3d39

Please sign in to comment.