Skip to content

Commit 1783b8f

Browse files
committed
fix windows build
1 parent de8c255 commit 1783b8f

File tree

1 file changed

+3
-3
lines changed
  • cardano-crypto-class/src/Cardano/Crypto/EllipticCurve/BLS12_381

1 file changed

+3
-3
lines changed

cardano-crypto-class/src/Cardano/Crypto/EllipticCurve/BLS12_381/Internal.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,9 +1023,9 @@ blsMSM ss ps = unsafePerformIO $ do
10231023
-- -- If there is only one point, we refert to blsMult function
10241024
-- -- The blst_mult_pippenger C call will also not work for
10251025
-- -- this case on windows builds.
1026-
-- [(scalar, pt)] -> do
1027-
-- i <- scalarToInteger scalar
1028-
-- return (blsMult pt i)
1026+
[(scalar, pt)] -> do
1027+
i <- scalarToInteger scalar
1028+
return (blsMult pt i)
10291029
_ -> do
10301030
let (scalars, points) = unzip filteredPoints
10311031
numPoints = length points

0 commit comments

Comments
 (0)