Skip to content

Commit fa389e1

Browse files
authored
fix(zkquiz): use compressed mode for sp1 (#2155)
1 parent 030e128 commit fa389e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/3_guides/2_build_your_first_aligned_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ println!("Generating Proof ");
237237
let client = ProverClient::new();
238238
let (pk, vk) = client.setup(ELF);
239239

240-
let Ok(proof) = client.prove(&pk, stdin).run() else {
240+
let Ok(proof) = client.prove(&pk, stdin).compressed().run() else {
241241
println!("Incorrect answers!");
242242
return;
243243
};

examples/zkquiz/quiz/script/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ async fn main() {
183183
let client = ProverClient::from_env();
184184
let (pk, vk) = client.setup(ELF);
185185

186-
let Ok(proof) = client.prove(&pk, &stdin).run() else {
186+
let Ok(proof) = client.prove(&pk, &stdin).compressed().run() else {
187187
println!("Incorrect answers!");
188188
return;
189189
};

0 commit comments

Comments
 (0)