From 139c24a0f89f796e67d8e03bb67c972173e19623 Mon Sep 17 00:00:00 2001 From: kraemahz Date: Thu, 17 Mar 2022 03:33:30 +0000 Subject: [PATCH] Clarify proposers message is about current epoch (#3084) ## Issue Addressed #3083 ## Proposed Changes Changes "proposers" to "proposers_this_epoch" in the validator log message. Co-authored-by: kraemahz <58143782+kraemahz@users.noreply.github.com> --- validator_client/src/notifier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validator_client/src/notifier.rs b/validator_client/src/notifier.rs index f521f2fd3..6157027cb 100644 --- a/validator_client/src/notifier.rs +++ b/validator_client/src/notifier.rs @@ -89,7 +89,7 @@ async fn notify( info!( log, "All validators active"; - "proposers" => proposing_validators, + "current_epoch_proposers" => proposing_validators, "active_validators" => attesting_validators, "total_validators" => total_validators, "epoch" => format!("{}", epoch), @@ -99,7 +99,7 @@ async fn notify( info!( log, "Some validators active"; - "proposers" => proposing_validators, + "current_epoch_proposers" => proposing_validators, "active_validators" => attesting_validators, "total_validators" => total_validators, "epoch" => format!("{}", epoch),