We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f45761 commit 74a1863Copy full SHA for 74a1863
src/state.rs
@@ -29,7 +29,10 @@ impl FlashblockNumber {
29
30
/// Returns current flashblock in 0-index format
31
pub fn index(&self) -> u64 {
32
- self.current_flashblock.load(Ordering::Relaxed).saturating_sub(1)
+ self
33
+ .current_flashblock
34
+ .load(Ordering::Relaxed)
35
+ .saturating_sub(1)
36
}
37
38
pub fn advance(&self) -> u64 {
0 commit comments