Skip to content

Commit

Permalink
Fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcaseria committed Feb 5, 2025
1 parent c07c44b commit 7f67d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cdk-common/src/database/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ impl TransactionId {

impl std::fmt::Display for TransactionId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", hex::encode(&self.0))
write!(f, "{}", hex::encode(self.0))
}
}

Expand Down

0 comments on commit 7f67d51

Please sign in to comment.