From 0ce6a9cac9b60ca13544345c1e41310a8910c5ec Mon Sep 17 00:00:00 2001 From: Joey Kraut Date: Tue, 9 Jan 2024 13:43:36 -0800 Subject: [PATCH] plonk: proof-system: structs: Mark commit_key as public --- plonk/src/proof_system/structs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonk/src/proof_system/structs.rs b/plonk/src/proof_system/structs.rs index 67383d90d..13153b1ff 100644 --- a/plonk/src/proof_system/structs.rs +++ b/plonk/src/proof_system/structs.rs @@ -551,7 +551,7 @@ pub struct ProvingKey { pub(crate) selectors: Vec>, // KZG PCS committing key. - pub(crate) commit_key: CommitKey, + pub commit_key: CommitKey, /// The verifying key. It is used by prover to initialize transcripts. pub vk: VerifyingKey,