Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: fix clippy, docker context (succinctlabs#273)
Browse files Browse the repository at this point in the history
ratankaliani authored and adam-xu-mantle committed Dec 16, 2024
1 parent 449c981 commit 3d7f6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposer/succinct/bin/server.rs
Original file line number Diff line number Diff line change
@@ -269,7 +269,7 @@ async fn request_mock_span_proof(
// Start the server and native client with a timeout.
// Note: Ideally, the server should call out to a separate process that executes the native
// host, and return an ID that the client can poll on to check if the proof was submitted.
let mut witnessgen_executor = WitnessGenExecutor::default();
let mut witnessgen_executor = WitnessGenExecutor::new(WITNESSGEN_TIMEOUT, RunContext::Docker);
witnessgen_executor.spawn_witnessgen(&host_cli).await?;
// Log any errors from running the witness generation process.
if let Err(e) = witnessgen_executor.flush().await {

0 comments on commit 3d7f6cb

Please sign in to comment.