Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix Weight::is_zero (#12396)
Browse files Browse the repository at this point in the history
* Fix Weight::is_zero

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add test

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
  • Loading branch information
ggwpez authored Oct 3, 2022
1 parent 9472af8 commit 2579550
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion primitives/weights/src/weight_v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl Zero for Weight {
}

fn is_zero(&self) -> bool {
self.ref_time == 0
self == &Self::zero()
}
}

Expand Down Expand Up @@ -447,3 +447,16 @@ impl SubAssign for Weight {
};
}
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn is_zero_works() {
assert!(Weight::zero().is_zero());
assert!(!Weight::from_components(1, 0).is_zero());
assert!(!Weight::from_components(0, 1).is_zero());
assert!(!Weight::MAX.is_zero());
}
}

0 comments on commit 2579550

Please sign in to comment.