Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Mar 18, 2024
1 parent cd396c2 commit cf16c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plonky2x/core/src/backend/prover/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ impl RemoteProver {
.collect_vec();
let (batch_id, proof_ids) = service.submit_batch(&requests)?;

// Default timeout for a proof is 60 minutes. Users can override this value by
// setting the PROOF_TIMEOUT_SECS environment variable.
// Default timeout for a batch proof is 60 minutes. Users can override this value by
// setting the PROOF_BATCH_TIMEOUT_SECS environment variable.
const DEFAULT_PROOF_BATCH_TIMEOUT_SECS: u64 = 60 * 60;
let proof_batch_timeout_secs = env::var("PROOF_BATCH_TIMEOUT_SECS")
.unwrap_or(DEFAULT_PROOF_BATCH_TIMEOUT_SECS.to_string())
Expand Down

0 comments on commit cf16c46

Please sign in to comment.