Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
solana validators now shows current epoch credits instead of lifeti…
Browse files Browse the repository at this point in the history
…me credits
  • Loading branch information
mvines committed Apr 19, 2021
1 parent 4aa753f commit f5f0690
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cli-output/src/cli_output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl fmt::Display for CliValidators {

writeln!(
f,
"{} {:<44} {:<44} {:>3}% {:>8} {:>10} {:>10} {:>8} {}",
"{} {:<44} {:<44} {:>3}% {:>8} {:>10} {:>13} {:>7} {}",
if delinquent {
WARNING.to_string()
} else {
Expand Down Expand Up @@ -366,13 +366,13 @@ impl fmt::Display for CliValidators {
f,
"{}",
style(format!(
" {:<44} {:<38} {} {} {} {:>10} {:^8} {}",
" {:<44} {:<38} {} {} {} {:>11} {:^7} {}",
"Identity",
"Vote Account",
"Commission",
"Last Vote",
"Root Block",
"Credits",
"Epoch Credits",
"Version",
"Active Stake",
))
Expand Down Expand Up @@ -482,9 +482,9 @@ impl CliValidator {
credits: vote_account
.epoch_credits
.iter()
.find_map(|(epoch, credits, _)| {
.find_map(|(epoch, credits, pre_credits)| {
if *epoch == current_epoch {
Some(*credits)
Some(credits.saturating_sub(*pre_credits))
} else {
None
}
Expand Down

0 comments on commit f5f0690

Please sign in to comment.