mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-11-02 20:37:03 +00:00
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:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user