From b356c7001f30da23bfad2b43eb0b7ca9804c8252 Mon Sep 17 00:00:00 2001 From: Georg Wiese Date: Tue, 22 Nov 2022 15:37:35 +0100 Subject: [PATCH] Make markers public, .vscode to .gitignore --- .gitignore | 1 + src/plonk/better_cs/keys.rs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e0da9bab1..186eec509 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.vscode target Cargo.lock pkg diff --git a/src/plonk/better_cs/keys.rs b/src/plonk/better_cs/keys.rs index 6a62d188a..ee2648d2f 100644 --- a/src/plonk/better_cs/keys.rs +++ b/src/plonk/better_cs/keys.rs @@ -598,7 +598,7 @@ pub struct Proof> { pub opening_at_z_proof: E::G1Affine, pub opening_at_z_omega_proof: E::G1Affine, - pub(crate) _marker: std::marker::PhantomData

, + pub _marker: std::marker::PhantomData

, } impl> Proof { @@ -780,7 +780,7 @@ pub struct VerificationKey> { pub g2_elements: [E::G2Affine; 2], - pub(crate) _marker: std::marker::PhantomData

, + pub _marker: std::marker::PhantomData

, } impl> VerificationKey {