Skip to content

Commit

Permalink
Fix Clippy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed May 24, 2024
1 parent f57a747 commit 8c881da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggligator/src/agg/link_int.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ where
// Publish unconfirmed status.
self.unconfirmed_tx.send_if_modified(|m| {
if *m != self.unconfirmed {
*m = self.unconfirmed.clone();
m.clone_from(&self.unconfirmed);
true
} else {
false
Expand Down

0 comments on commit 8c881da

Please sign in to comment.