Skip to content

Commit

Permalink
fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemand committed Sep 24, 2024
1 parent 0580c59 commit 72950f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notification-server/src/bin/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ async fn catch_up_to_limit(
.find_first_finalized_block_no_earlier_than(lower_bound.., lower_bound_time)
.await?;

if &time_ago_block.block_height > &current_height {
if time_ago_block.block_height > current_height {
info!(
"Skipping {} blocks",
time_ago_block.block_height.height - current_height.height
Expand Down

0 comments on commit 72950f8

Please sign in to comment.