refactor rent payment order cmp (#30132)

This commit is contained in:
HaoranYi 2023-02-07 09:30:48 -06:00 committed by GitHub
parent 5dd90268b1
commit 3f913e49fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -4991,10 +4991,7 @@ impl Bank {
// Sort first by stake and then by validator identity pubkey for determinism
validator_stakes.sort_by(|(pubkey1, staked1), (pubkey2, staked2)| {
match staked2.cmp(staked1) {
std::cmp::Ordering::Equal => pubkey2.cmp(pubkey1),
other => other,
}
staked2.cmp(staked1).then(pubkey2.cmp(pubkey1))
});
let enforce_fix = self.no_overflow_rent_distribution_enabled();