From a459c6be5dc3a60b23aa67655a32fe65892a896e Mon Sep 17 00:00:00 2001 From: Alexander Tesfamichael Date: Mon, 19 Feb 2024 10:43:07 +0100 Subject: [PATCH] refactor: clarify 'missed' doesn't matter --- src/phoenix/inclusion_monitor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phoenix/inclusion_monitor/mod.rs b/src/phoenix/inclusion_monitor/mod.rs index c0a88be..0a4d36f 100644 --- a/src/phoenix/inclusion_monitor/mod.rs +++ b/src/phoenix/inclusion_monitor/mod.rs @@ -163,7 +163,7 @@ async fn report_missing_payload( ); let is_adjustment_hash = check_is_adjustment_hash(relay_pool, &payload.block_hash).await?; - message.push_str(&format!("is\\_missed\\_adjustment: {}", is_adjustment_hash)); + message.push_str(&format!("is\\_adjustment: {}", is_adjustment_hash)); // Check if a publish was attempted, if yes, add publish stats. let published_stats = loki_client.published_stats(payload.slot).await?;