Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion crates/multithread/src/multithread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ async fn handle_compute_request_event(

match result {
Ok(val) => bus.publish(val)?,
Err(e) => bus.err(EType::Computation, e),
Err(e) => {
// Publish ComputeRequestError so ProofRequestActor can handle it
// and continue without proof if needed
bus.publish(e)?
}
};
Ok(())
}
Expand Down
2 changes: 1 addition & 1 deletion crates/zk-prover/src/actors/proof_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl ProofRequestActor {
warn!("ZK proof request failed for E3 {}: {err}", pending.e3_id);

// Publish EncryptionKeyCreated without proof to allow the system to continue
// Applications can check the has_proof field to determine if validation is required
// Applications can check the proof field to determine if validation occurred
if let Err(err) = self.bus.publish(EncryptionKeyCreated {
e3_id: pending.e3_id,
key: pending.key,
Expand Down
3 changes: 1 addition & 2 deletions crates/zk-prover/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ use std::time::Duration;
use tokio::fs;
use tracing::{debug, warn};

// TODO: change to main when feat/noir-prover is merged
const VERSIONS_MANIFEST_URL: &str =
"https://raw.githubusercontent.com/gnosisguild/enclave/feat/noir-prover/crates/zk-prover/versions.json";
"https://raw.githubusercontent.com/gnosisguild/enclave/main/crates/zk-prover/versions.json";
Comment thread
hmzakhalid marked this conversation as resolved.

const BB_VERSION: &str = "3.0.0-nightly.20251104";
const CIRCUITS_VERSION: &str = "0.1.11";
Expand Down