We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actually in our repo, we have implemented Commitment as a wrapper type over dusk-bls12_381::G1Affine.
dusk-bls12_381::G1Affine
https://github.com/dusk-network/plonk/blob/master/src/commitment_scheme/kzg10/mod.rs#L95-L104
But instead of implementing the conversions from Affine and from Projective on that way, we should implement the From trait.
From
The text was updated successfully, but these errors were encountered:
Hi mate, I will try to solve the issue!
Sorry, something went wrong.
Implement From for Commitment
d07f37a
Implement From G1Affine and G1Projective for Commitment. Resolves: dusk-network#433
a521e79
oriolval
Successfully merging a pull request may close this issue.
Actually in our repo, we have implemented Commitment as a wrapper type over
dusk-bls12_381::G1Affine
.https://github.com/dusk-network/plonk/blob/master/src/commitment_scheme/kzg10/mod.rs#L95-L104
But instead of implementing the conversions from Affine and from Projective on that way, we should implement the
From
trait.The text was updated successfully, but these errors were encountered: