Improve vote-account for logical flow/reasoning (#15237)
* Improve vote-account for logical flow/reasoning * Clean up * Update messages
This commit is contained in:
parent
dce8817880
commit
ab0f4c69aa
|
@ -29,7 +29,7 @@ use {
|
||||||
solana_stake_program::stake_state::{Authorized, Lockup},
|
solana_stake_program::stake_state::{Authorized, Lockup},
|
||||||
solana_vote_program::{
|
solana_vote_program::{
|
||||||
authorized_voters::AuthorizedVoters,
|
authorized_voters::AuthorizedVoters,
|
||||||
vote_state::{BlockTimestamp, Lockout},
|
vote_state::{BlockTimestamp, Lockout, MAX_EPOCH_CREDITS_HISTORY, MAX_LOCKOUT_HISTORY},
|
||||||
},
|
},
|
||||||
std::{
|
std::{
|
||||||
collections::{BTreeMap, HashMap},
|
collections::{BTreeMap, HashMap},
|
||||||
|
@ -610,17 +610,55 @@ fn show_votes_and_credits(
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
writeln!(f, "Recent Votes:")?;
|
// Existence of this should guarantee the occurrence of vote truncation
|
||||||
for vote in votes {
|
let newest_history_entry = epoch_voting_history.iter().rev().next();
|
||||||
writeln!(f, "- slot: {}", vote.slot)?;
|
|
||||||
writeln!(f, " confirmation count: {}", vote.confirmation_count)?;
|
|
||||||
}
|
|
||||||
writeln!(f, "Epoch Voting History:")?;
|
|
||||||
writeln!(
|
writeln!(
|
||||||
f,
|
f,
|
||||||
"* missed credits include slots unavailable to vote on due to delinquent leaders",
|
"{} Votes (using {}/{} entries):",
|
||||||
|
(if newest_history_entry.is_none() {
|
||||||
|
"All"
|
||||||
|
} else {
|
||||||
|
"Recent"
|
||||||
|
}),
|
||||||
|
votes.len(),
|
||||||
|
MAX_LOCKOUT_HISTORY
|
||||||
)?;
|
)?;
|
||||||
for entry in epoch_voting_history {
|
|
||||||
|
for vote in votes.iter().rev() {
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"- slot: {} (confirmation count: {})",
|
||||||
|
vote.slot, vote.confirmation_count
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
if let Some(newest) = newest_history_entry {
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"- ... (truncated {} rooted votes, which have been credited)",
|
||||||
|
newest.credits
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
if !epoch_voting_history.is_empty() {
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"{} Epoch Voting History (using {}/{} entries):",
|
||||||
|
(if epoch_voting_history.len() < MAX_EPOCH_CREDITS_HISTORY {
|
||||||
|
"All"
|
||||||
|
} else {
|
||||||
|
"Recent"
|
||||||
|
}),
|
||||||
|
epoch_voting_history.len(),
|
||||||
|
MAX_EPOCH_CREDITS_HISTORY
|
||||||
|
)?;
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"* missed credits include slots unavailable to vote on due to delinquent leaders",
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
for entry in epoch_voting_history.iter().rev() {
|
||||||
writeln!(
|
writeln!(
|
||||||
f, // tame fmt so that this will be folded like following
|
f, // tame fmt so that this will be folded like following
|
||||||
"- epoch: {}",
|
"- epoch: {}",
|
||||||
|
@ -628,7 +666,7 @@ fn show_votes_and_credits(
|
||||||
)?;
|
)?;
|
||||||
writeln!(
|
writeln!(
|
||||||
f,
|
f,
|
||||||
" credits range: [{}..{})",
|
" credits range: ({}..{}]",
|
||||||
entry.prev_credits, entry.credits
|
entry.prev_credits, entry.credits
|
||||||
)?;
|
)?;
|
||||||
writeln!(
|
writeln!(
|
||||||
|
@ -637,6 +675,22 @@ fn show_votes_and_credits(
|
||||||
entry.credits_earned, entry.slots_in_epoch
|
entry.credits_earned, entry.slots_in_epoch
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
if let Some(oldest) = epoch_voting_history.iter().next() {
|
||||||
|
if oldest.prev_credits > 0 {
|
||||||
|
// Oldest entry doesn't start with 0. so history must be truncated...
|
||||||
|
|
||||||
|
// count of this combined pseudo credits range: (0..=oldest.prev_credits] like the above
|
||||||
|
// (or this is just [1..=oldest.prev_credits] for human's simpler minds)
|
||||||
|
let count = oldest.prev_credits;
|
||||||
|
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"- ... (omitting {} past rooted votes, which have already been credited)",
|
||||||
|
count
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ pub const MAX_LOCKOUT_HISTORY: usize = 31;
|
||||||
pub const INITIAL_LOCKOUT: usize = 2;
|
pub const INITIAL_LOCKOUT: usize = 2;
|
||||||
|
|
||||||
// Maximum number of credits history to keep around
|
// Maximum number of credits history to keep around
|
||||||
const MAX_EPOCH_CREDITS_HISTORY: usize = 64;
|
pub const MAX_EPOCH_CREDITS_HISTORY: usize = 64;
|
||||||
|
|
||||||
#[frozen_abi(digest = "Ch2vVEwos2EjAVqSHCyJjnN2MNX1yrpapZTGhMSCjWUH")]
|
#[frozen_abi(digest = "Ch2vVEwos2EjAVqSHCyJjnN2MNX1yrpapZTGhMSCjWUH")]
|
||||||
#[derive(Serialize, Default, Deserialize, Debug, PartialEq, Eq, Clone, AbiExample)]
|
#[derive(Serialize, Default, Deserialize, Debug, PartialEq, Eq, Clone, AbiExample)]
|
||||||
|
|
Loading…
Reference in New Issue