From 72950f83517dbf38bc79b59651892a4a9e3c7e9e Mon Sep 17 00:00:00 2001 From: Lasse Alm Date: Tue, 24 Sep 2024 11:21:02 +0200 Subject: [PATCH] fix clippy issue --- notification-server/src/bin/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification-server/src/bin/service.rs b/notification-server/src/bin/service.rs index ae3a6378..bb53b32f 100644 --- a/notification-server/src/bin/service.rs +++ b/notification-server/src/bin/service.rs @@ -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 > ¤t_height { + if time_ago_block.block_height > current_height { info!( "Skipping {} blocks", time_ago_block.block_height.height - current_height.height