diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 6d53dec..2ea3b5a 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -11,8 +11,7 @@ thiserror = "1.0.62" config = "0.14.0" dotenv = "0.15" rusqlite = { version = "0.32.0", features = ["bundled"] } -#nostr-sdk = "0.33.0" -nostr-sdk = { git = "https://github.com/AbdelStark/nostr", rev = "95b5f63" } +nostr-sdk = { git = "https://github.com/rust-nostr/nostr", rev = "f66ea1b" } log = "0.4.22" tokio = { version = "1", default-features = false } text-to-ascii-art = "0.1.10" diff --git a/crates/core/src/dvm/service_provider.rs b/crates/core/src/dvm/service_provider.rs index f3c4c3e..665f28b 100644 --- a/crates/core/src/dvm/service_provider.rs +++ b/crates/core/src/dvm/service_provider.rs @@ -185,7 +185,7 @@ impl ServiceProvider { let response_json = serde_json::to_string(&job_result)?; let job_result_event: Event = - EventBuilder::job_result(*event, Some(response_json), 0, None) + EventBuilder::job_result(*event, response_json, 0, None) .unwrap() .to_event(&self.prover_agent_keys) .unwrap();