Skip to content

Commit

Permalink
Fix CI lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibo-lg committed Nov 6, 2023
1 parent c92a3ae commit 88dd135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning-invoice/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ pub struct Bolt11InvoiceSignature(pub RecoverableSignature);

impl PartialOrd for Bolt11InvoiceSignature {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.0.serialize_compact().1.partial_cmp(&other.0.serialize_compact().1)
Some(self.cmp(other))
}
}

Expand Down

0 comments on commit 88dd135

Please sign in to comment.