Skip to content

Commit b8a3ada

Browse files
committed
cargo fmt
1 parent 07eb121 commit b8a3ada

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

aggregation_mode/src/backend/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Config {
3434

3535
pub fn get_last_processed_block(&self) -> Result<u64, Box<dyn std::error::Error>> {
3636
match File::open(&self.last_processed_block_filepath) {
37-
Err(_) =>{
37+
Err(_) => {
3838
// if file doesn't exist, default 0
3939
Ok(0)
4040
}
@@ -44,7 +44,7 @@ impl Config {
4444
let lpb: LastProcessedBlock = serde_json::from_str(&contents)?;
4545
Ok(lpb.last_processed_block)
4646
}
47-
}
47+
}
4848
}
4949

5050
pub fn update_last_processed_block(

0 commit comments

Comments
 (0)