chore: cargo fmt

This commit is contained in:
sprites0
2025-10-05 09:57:36 +00:00
parent 3b33b0a526
commit bfd61094ee
3 changed files with 17 additions and 14 deletions

View File

@ -81,10 +81,11 @@ impl BlockPoller {
.await
.ok_or(eyre::eyre!("Failed to find latest block number"))?;
if let Some(debug_cutoff_height) = debug_cutoff_height
&& next_block_number > debug_cutoff_height {
next_block_number = debug_cutoff_height;
}
if let Some(debug_cutoff_height) = debug_cutoff_height &&
next_block_number > debug_cutoff_height
{
next_block_number = debug_cutoff_height;
}
loop {
match block_source.collect_block(next_block_number).await {