Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 20, 2024
1 parent 28db475 commit c777a58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/sdk/src/network/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ impl NetworkProver {
/// let client = ProverClient::builder().network().build();
/// let (status, maybe_proof) = client.get_proof_status(&request_id).await?;
/// ```
pub async fn get_proof_status<P: DeserializeOwned>(
pub async fn get_proof_status(
&self,
request_id: &[u8],
) -> Result<(GetProofRequestStatusResponse, Option<P>)> {
) -> Result<(GetProofRequestStatusResponse, Option<SP1ProofWithPublicValues>)> {
self.client.get_proof_request_status(request_id).await
}

Expand Down

0 comments on commit c777a58

Please sign in to comment.