We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c1e4d commit 72b6c5eCopy full SHA for 72b6c5e
crates/sdk/src/prover/agg.rs
@@ -23,11 +23,11 @@ use crate::{
23
};
24
25
pub struct AggStarkProver<E: StarkFriEngine<SC>> {
26
- leaf_prover: VmLocalProver<SC, NativeConfig, E>,
27
- leaf_controller: LeafProvingController,
+ pub leaf_prover: VmLocalProver<SC, NativeConfig, E>,
+ pub leaf_controller: LeafProvingController,
28
29
- internal_prover: VmLocalProver<SC, NativeConfig, E>,
30
- root_prover: RootVerifierLocalProver,
+ pub internal_prover: VmLocalProver<SC, NativeConfig, E>,
+ pub root_prover: RootVerifierLocalProver,
31
32
pub num_children_internal: usize,
33
pub max_internal_wrapper_layers: usize,
0 commit comments