Skip to content

Commit

Permalink
fix: more linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kukkok3 committed Feb 21, 2024
1 parent 79a38d2 commit d88bdbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jormungandr/jormungandr-lib/src/crypto/key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl<T, A: VerificationAlgorithm> Eq for Signature<T, A> {}

impl<A: AsymmetricPublicKey> PartialOrd<Identifier<A>> for Identifier<A> {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
self.0.partial_cmp(&other.0)
Some(self.cmp(other))
}
}

Expand Down

0 comments on commit d88bdbf

Please sign in to comment.