Skip to content

Commit

Permalink
make LocalTxProver fields private
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Nov 2, 2023
1 parent 1b20142 commit 97a64ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zcash_proofs/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ use crate::{default_params_folder, SAPLING_OUTPUT_NAME, SAPLING_SPEND_NAME};
/// An implementation of [`TxProver`] using Sapling Spend and Output parameters from
/// locally-accessible paths.
pub struct LocalTxProver {
pub spend_params: Parameters<Bls12>,
pub spend_vk: PreparedVerifyingKey<Bls12>,
pub output_params: Parameters<Bls12>,
spend_params: Parameters<Bls12>,
spend_vk: PreparedVerifyingKey<Bls12>,
output_params: Parameters<Bls12>,
}

impl LocalTxProver {
Expand Down

0 comments on commit 97a64ea

Please sign in to comment.