Skip to content

Commit 74a1863

Browse files
committed
fmt
1 parent 1f45761 commit 74a1863

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/state.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ impl FlashblockNumber {
2929

3030
/// Returns current flashblock in 0-index format
3131
pub fn index(&self) -> u64 {
32-
self.current_flashblock.load(Ordering::Relaxed).saturating_sub(1)
32+
self
33+
.current_flashblock
34+
.load(Ordering::Relaxed)
35+
.saturating_sub(1)
3336
}
3437

3538
pub fn advance(&self) -> u64 {

0 commit comments

Comments
 (0)