Skip to content

Commit

Permalink
Makes clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
gupnik committed Feb 5, 2025
1 parent cef3486 commit dc85018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/chains/tw_sui/src/transaction/raw_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ impl TryFrom<Transaction> for Command {
dependencies
.into_iter()
.map(|dependency| {
Ok(ObjectID::from_str(&dependency).context("Failed to parse object ID")?)
ObjectID::from_str(&dependency).context("Failed to parse object ID")
})
.collect::<SigningResult<Vec<_>>>()?,
)),
Expand All @@ -291,7 +291,7 @@ impl TryFrom<Transaction> for Command {
dependencies
.into_iter()
.map(|dependency| {
Ok(ObjectID::from_str(&dependency).context("Failed to parse object ID")?)
ObjectID::from_str(&dependency).context("Failed to parse object ID")
})
.collect::<SigningResult<Vec<_>>>()?,
ObjectID::from_str(&package_id).context("Failed to parse object ID")?,
Expand Down

0 comments on commit dc85018

Please sign in to comment.