diff --git a/src/transport/models.rs b/src/transport/models.rs index ff92254a8..0a0036d3b 100644 --- a/src/transport/models.rs +++ b/src/transport/models.rs @@ -162,7 +162,7 @@ impl Eq for RawTransaction {} impl PartialOrd for RawTransaction { fn partial_cmp(&self, other: &Self) -> Option { - self.data.lt.partial_cmp(&other.data.lt) + Some(self.cmp(other)) } }