Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pashinov committed Feb 12, 2024
1 parent 0e51815 commit f8c669b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ impl Eq for RawTransaction {}

impl PartialOrd for RawTransaction {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.data.lt.partial_cmp(&other.data.lt)
Some(self.cmp(other))
}
}

Expand Down

0 comments on commit f8c669b

Please sign in to comment.