diff --git a/substrate/primitives/arithmetic/src/per_things.rs b/substrate/primitives/arithmetic/src/per_things.rs index 59c7f36d0f..f9c048e55b 100644 --- a/substrate/primitives/arithmetic/src/per_things.rs +++ b/substrate/primitives/arithmetic/src/per_things.rs @@ -772,10 +772,12 @@ macro_rules! implement_per_thing { impl Add for $name { type Output = $name; + // For PerU16, $max == u16::MAX, so we need this `allow`. + #[allow(unused_comparisons)] #[inline] fn add(self, rhs: Self) -> Self::Output { let inner = self.deconstruct().add(rhs.deconstruct()); - debug_assert!(inner < $max); + debug_assert!(inner <= $max); $name::from_parts(inner) } }