Skip to content

Commit

Permalink
⬆️ use back canonical rust-nostr/nostr dependency after fix on miss…
Browse files Browse the repository at this point in the history
…ing payload for job result
  • Loading branch information
AbdelStark committed Jul 30, 2024
1 parent df337b9 commit 250a647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/dvm/service_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 250a647

Please sign in to comment.