Merge pull request #68 from ebfull/redjubjub-final-work

Make PublicKey inner Point public so that we can use it during zk-SNARK verification
This commit is contained in:
ebfull 2018-05-07 14:21:49 -06:00 committed by GitHub
commit 3b8246f3eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ pub struct Signature {
pub struct PrivateKey<E: JubjubEngine>(E::Fs);
pub struct PublicKey<E: JubjubEngine>(Point<E, Unknown>);
pub struct PublicKey<E: JubjubEngine>(pub Point<E, Unknown>);
impl Signature {
pub fn read<R: Read>(mut reader: R) -> io::Result<Self> {