diff --git a/runtime/common/src/oracle.rs b/runtime/common/src/oracle.rs index 8ecc509c92..6045f0ceec 100644 --- a/runtime/common/src/oracle.rs +++ b/runtime/common/src/oracle.rs @@ -52,7 +52,7 @@ impl Ord for Feeder { fn cmp(&self, other: &Self) -> sp_std::cmp::Ordering { // Since the inner object could not be Ord, // we compare their encoded representations - self.0.encode().cmp(&other.encode()) + self.0.encode().cmp(&other.0.encode()) } }