Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Add prover input file example
Browse files Browse the repository at this point in the history
  • Loading branch information
tuommaki committed Sep 2, 2024
1 parent 3669f92 commit 239ddcb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion crates/tests/e2e-tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,13 @@ async fn send_proving_task(
let proving_step = WorkflowStep {
program: *prover_hash,
args: vec!["--nonce".to_string(), nonce.to_string()],
inputs: vec![],
inputs: vec![
ProgramData::Input {
file_name: String::from("/workspace/lorem.ipsum"),
file_url: String::from("https://storage.googleapis.com/gevulot-devnet-deployments/static-files/lorem.ipsum"),
checksum: String::from("6aac6f1bab62ceab64eb96755739bc9bcb676530023b84423f8e81b9b270dfc1"),
}
],
};

let verifying_step = WorkflowStep {
Expand Down

0 comments on commit 239ddcb

Please sign in to comment.