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>
This commit is contained in:
kraemahz 2022-03-17 03:33:30 +00:00
parent e715db8b99
commit 139c24a0f8

View File

@ -89,7 +89,7 @@ async fn notify<T: SlotClock + 'static, E: EthSpec>(
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<T: SlotClock + 'static, E: EthSpec>(
info!(
log,
"Some validators active";
"proposers" => proposing_validators,
"current_epoch_proposers" => proposing_validators,
"active_validators" => attesting_validators,
"total_validators" => total_validators,
"epoch" => format!("{}", epoch),