Don't bother paying 0 rent

This commit is contained in:
Michael Vines 2020-10-10 08:47:20 -07:00 committed by mergify[bot]
parent 1859fbeb30
commit 1fc7c1ecee
1 changed files with 13 additions and 11 deletions

View File

@ -2676,17 +2676,19 @@ impl Bank {
} else {
rent_share
};
let mut account = self.get_account(&pubkey).unwrap_or_default();
account.lamports += rent_to_be_paid;
self.store_account(&pubkey, &account);
rewards.push((
pubkey,
RewardInfo {
reward_type: RewardType::Rent,
lamports: rent_to_be_paid as i64,
post_balance: account.lamports,
},
));
if rent_to_be_paid > 0 {
let mut account = self.get_account(&pubkey).unwrap_or_default();
account.lamports += rent_to_be_paid;
self.store_account(&pubkey, &account);
rewards.push((
pubkey,
RewardInfo {
reward_type: RewardType::Rent,
lamports: rent_to_be_paid as i64,
post_balance: account.lamports,
},
));
}
});
self.rewards.write().unwrap().append(&mut rewards);