computer: store part 9

This commit is contained in:
nym21
2025-07-03 19:15:02 +02:00
parent be4e693a27
commit 6d35c26b3f
4 changed files with 30 additions and 16 deletions

View File

@@ -95,6 +95,10 @@ impl CheckedSub<usize> for Sats {
impl SubAssign for Sats {
fn sub_assign(&mut self, rhs: Self) {
*self = self.checked_sub(rhs).unwrap();
// .unwrap_or_else(|| {
// dbg!((*self, rhs));
// unreachable!();
// });
}
}