Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Sep 18, 2024
1 parent f20b69d commit 97f2cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sdk/src/network/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl NetworkClient {

/// Fulfill a proof. Should only be called after the proof has been uploaded. Returns an error
/// if the proof is not in a PROOF_CLAIMED state or if the caller is not the claimer.
pub async fn fulfill_proof(&self, proof_id: &str, cycles: u64) -> Result<()> {
pub async fn fulfill_proof(&self, proof_id: &str, cycles: u64) -> Result<FulfillProofResponse> {
let nonce = self.get_nonce().await?;
let signature = self.auth.sign_fulfill_proof_message(nonce, proof_id).await?;
let res = self
Expand Down

0 comments on commit 97f2cce

Please sign in to comment.