Skip to content

Commit

Permalink
chore: fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Apr 18, 2024
1 parent a1f8c1c commit a4bb3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ impl<'consignment, 'resolver, C: ConsignmentApi, R: ResolveWitness>
for seal in seals.iter().filter(|seal| seal.method() != close_method) {
self.status
.borrow_mut()
.add_failure(Failure::SealInvalidMethod(bundle_id, seal.clone()));
.add_failure(Failure::SealInvalidMethod(bundle_id, *seal));
}
match (close_method, anchor.clone()) {
(
Expand Down

0 comments on commit a4bb3a5

Please sign in to comment.