Replies: 1 comment 5 replies
-
Can you also provide the full test function with the witness assignment? Could you try using |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a circuit over BW6-761 which involves a part verifying this:
So
H
is a BLS12-377 G1 point.After upgrading to
0.10.0
, attempt to generate a proof with a valid witness gives the following error:14:07:35 ERR error="constraint #1309 is not satisfied: qL⋅xa + qR⋅xb + qO⋅xc + qM⋅(xaxb) + qC != 0 → 2243532423002762739192056004629257692190643941628461340447015068082287571184 + 245951388471720416337462867129806383963203273194829779534164962454840822539647035183076162807325460984295687032279 + 0 + 0 + 0 != 0" nbConstraints=4123
Apparently, the problematic line is
preimage.ScalarMulBase(api, m.Sum())
, since the error was gone after removing it.Is there any other changes in
0.10.0
that I should be aware of? Many thanks.Beta Was this translation helpful? Give feedback.
All reactions