Skip to content

Commit af7d664

Browse files
committed
bls: Fix clippy lint
Signed-off-by: Colin Walters <[email protected]>
1 parent 1d57271 commit af7d664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/lib/src/bls_config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl PartialEq for BLSConfig {
2424

2525
impl PartialOrd for BLSConfig {
2626
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
27-
self.version.partial_cmp(&other.version)
27+
Some(self.cmp(other))
2828
}
2929
}
3030

0 commit comments

Comments
 (0)