Skip to content

Commit bd5ad9d

Browse files
committed
chore: rename prove feature to proving to prevent collision with risc0 features
1 parent 79eb6b3 commit bd5ad9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aggregation_mode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ opt-level = 3
3939

4040
[features]
4141
default = []
42-
prove = []
42+
proving = []
4343
sp1 = []
4444
risc0 = []
4545
gpu = ["risc0-zkvm/cuda"]

aggregation_mode/src/aggregators/sp1_aggregator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ pub(crate) fn aggregate_proofs(
6969
stdin.write_proof(*proof, vk);
7070
}
7171

72-
#[cfg(feature = "prove")]
72+
#[cfg(feature = "proving")]
7373
let client = &*SP1_PROVER_CLIENT;
7474
// If not in prove mode, create a mock proof via mock client
75-
#[cfg(not(feature = "prove"))]
75+
#[cfg(not(feature = "proving"))]
7676
let client = ProverClient::builder().mock().build();
7777

7878
let (pk, vk) = client.setup(PROGRAM_ELF);

0 commit comments

Comments
 (0)