Skip to content

Commit d90b04f

Browse files
committed
fix(cardano-blockchain-types): format
Signed-off-by: bkioshn <[email protected]>
1 parent 0ac7a22 commit d90b04f

File tree

1 file changed

+6
-2
lines changed
  • rust/cardano-blockchain-types/src

1 file changed

+6
-2
lines changed

rust/cardano-blockchain-types/src/slot.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
//! Block Slot
22
3-
use std::{cmp::Ordering, ops::{MulAssign, Sub}};
3+
use std::{
4+
cmp::Ordering,
5+
ops::{MulAssign, Sub},
6+
};
7+
48
use serde::Serialize;
59

610
use crate::conversion::from_saturating;
@@ -57,4 +61,4 @@ impl Sub for Slot {
5761
fn sub(self, rhs: Slot) -> Self::Output {
5862
Slot(self.0.saturating_sub(rhs.0))
5963
}
60-
}
64+
}

0 commit comments

Comments
 (0)