Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jul 10, 2024
1 parent 01c407c commit b2697f9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions noir/noir-repo/noir_stdlib/src/embedded_curve_ops.nr
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,10 @@ pub fn multi_scalar_mul<let N: u32>(
}

#[foreign(multi_scalar_mul)]
fn multi_scalar_mul_array_return<let N: u32>(
points: [EmbeddedCurvePoint; N],
scalars: [EmbeddedCurveScalar; N]
) -> [Field; 3]
{}
fn multi_scalar_mul_array_return<let N: u32>(points: [EmbeddedCurvePoint; N], scalars: [EmbeddedCurveScalar; N]) -> [Field; 3] {}

// docs:start:fixed_base_scalar_mul
pub fn fixed_base_scalar_mul(
scalar: EmbeddedCurveScalar,
) -> EmbeddedCurvePoint
pub fn fixed_base_scalar_mul(scalar: EmbeddedCurveScalar) -> EmbeddedCurvePoint
// docs:end:fixed_base_scalar_mul
{
let g1 = EmbeddedCurvePoint { x: 1, y: 17631683881184975370165255887551781615748388533673675138860, is_infinite: false };
Expand Down

0 comments on commit b2697f9

Please sign in to comment.