Skip to content

Commit

Permalink
fix: from_affine_point infinity definition (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger authored Feb 15, 2024
1 parent 56fe578 commit 4457010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starknet-curve/src/ec_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl ProjectivePoint {
x: p.x,
y: p.y,
z: FieldElement::ONE,
infinity: false,
infinity: p.infinity,
}
}

Expand Down

0 comments on commit 4457010

Please sign in to comment.