Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Jul 18, 2024
1 parent e7d6af2 commit 40f0975
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cosmrs/src/feegrant/basic_allowance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@ impl TryFrom<&proto::cosmos::feegrant::v1beta1::BasicAllowance> for BasicAllowan
.iter()
.map(TryFrom::try_from)
.collect::<Result<_, _>>()?,
expiration: proto
.expiration
.clone()
.map(TryFrom::try_from)
.transpose()?,
expiration: proto.expiration.map(TryFrom::try_from).transpose()?,
})
}
}
Expand Down

0 comments on commit 40f0975

Please sign in to comment.