Skip to content

Commit 73b4947

Browse files
committed
fix(sdk): suppress dead_code lint on parse_proof methods
1 parent 1ca1bee commit 73b4947

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/rs-sdk/src/sdk.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ impl Sdk {
248248
///
249249
/// - `R`: Type of the request that was used to fetch the proof.
250250
/// - `O`: Type of the object to be retrieved from the proof.
251+
#[allow(dead_code)]
251252
pub(crate) async fn parse_proof<R, O: FromProof<R> + MockResponse>(
252253
&self,
253254
request: O::Request,
@@ -287,6 +288,7 @@ impl Sdk {
287288
///
288289
/// - `R`: Type of the request that was used to fetch the proof.
289290
/// - `O`: Type of the object to be retrieved from the proof.
291+
#[allow(dead_code)]
290292
pub(crate) async fn parse_proof_with_metadata<R, O: FromProof<R> + MockResponse>(
291293
&self,
292294
request: O::Request,

0 commit comments

Comments
 (0)