Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-mysten committed Nov 15, 2024
1 parent a093daa commit f7921a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-graphql-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ mod tests {
let chckp = client.checkpoint(None, Some(chckp_id)).await;
assert!(chckp.is_ok());
let digest = chckp.unwrap().unwrap().content_digest;
let chckp_digest = CheckpointDigest::from_bytes(&digest.inner()).unwrap();
let chckp_digest = CheckpointDigest::from_bytes(digest.inner()).unwrap();
let total_transaction_blocks = client
.total_transaction_blocks_by_digest(chckp_digest)
.await
Expand Down

0 comments on commit f7921a1

Please sign in to comment.