Sort the output of solana validators by active stake (#9459)

automerge

(cherry picked from commit 3f33f4d3a9)
This commit is contained in:
Michael Vines
2020-04-12 17:39:02 -07:00
parent a895ce51ee
commit 73dad25d74

View File

@ -1276,7 +1276,9 @@ pub fn process_show_validators(
); );
} }
for vote_account in vote_accounts.current.into_iter() { let mut current = vote_accounts.current;
current.sort_by(|a, b| b.activated_stake.cmp(&a.activated_stake));
for vote_account in current.into_iter() {
print_vote_account( print_vote_account(
vote_account, vote_account,
epoch_info.epoch, epoch_info.epoch,
@ -1285,7 +1287,9 @@ pub fn process_show_validators(
false, false,
); );
} }
for vote_account in vote_accounts.delinquent.into_iter() { let mut delinquent = vote_accounts.delinquent;
delinquent.sort_by(|a, b| b.activated_stake.cmp(&a.activated_stake));
for vote_account in delinquent.into_iter() {
print_vote_account( print_vote_account(
vote_account, vote_account,
epoch_info.epoch, epoch_info.epoch,