]> Git Repo - secp256k1.git/blobdiff - src/ecmult_impl.h
Merge #407: Modify parameter order of internal functions to match API parameter order
[secp256k1.git] / src / ecmult_impl.h
index 81ae08e100b6b52ee6428eab17d15588acccdd51..d1e83bd6dd4a050cef2908ce447e0ea1260bdcb1 100644 (file)
@@ -103,7 +103,7 @@ static void secp256k1_ecmult_odd_multiples_table_storage_var(int n, secp256k1_ge
     /* Compute the odd multiples in Jacobian form. */
     secp256k1_ecmult_odd_multiples_table(n, prej, zr, a);
     /* Convert them in batch to affine coordinates. */
-    secp256k1_ge_set_table_gej_var(n, prea, prej, zr);
+    secp256k1_ge_set_table_gej_var(prea, prej, zr, n);
     /* Convert them to compact storage form. */
     for (i = 0; i < n; i++) {
         secp256k1_ge_to_storage(&pre[i], &prea[i]);
This page took 0.021584 seconds and 4 git commands to generate.