Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasArrachea committed Sep 12, 2024
1 parent 4e63fa9 commit 8c10b1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/testing-utils/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub async fn get_transaction_status(tx_hash: FixedBytes<32>) -> bool {
.clone()
.get_transaction_receipt(tx_hash)
.await
.unwrap()
.unwrap()
.status()
.unwrap_or(None)
.map(|receipt| receipt.status())
.unwrap_or(false)
}

0 comments on commit 8c10b1e

Please sign in to comment.