We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79eb6b3 commit bd5ad9dCopy full SHA for bd5ad9d
aggregation_mode/Cargo.toml
@@ -39,7 +39,7 @@ opt-level = 3
39
40
[features]
41
default = []
42
-prove = []
+proving = []
43
sp1 = []
44
risc0 = []
45
gpu = ["risc0-zkvm/cuda"]
aggregation_mode/src/aggregators/sp1_aggregator.rs
@@ -69,10 +69,10 @@ pub(crate) fn aggregate_proofs(
69
stdin.write_proof(*proof, vk);
70
}
71
72
- #[cfg(feature = "prove")]
+ #[cfg(feature = "proving")]
73
let client = &*SP1_PROVER_CLIENT;
74
// If not in prove mode, create a mock proof via mock client
75
- #[cfg(not(feature = "prove"))]
+ #[cfg(not(feature = "proving"))]
76
let client = ProverClient::builder().mock().build();
77
78
let (pk, vk) = client.setup(PROGRAM_ELF);
0 commit comments