Clarify docs of `minimum_balance` (#22385)

This commit is contained in:
Evan Conrad 2022-01-08 10:27:32 -08:00 committed by GitHub
parent d90d5ee9b6
commit 0f94e1d3a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ impl Rent {
let burned_portion = (rent_collected * u64::from(self.burn_percent)) / 100;
(burned_portion, rent_collected - burned_portion)
}
/// minimum balance due for a given size Account::data.len()
/// minimum balance due for rent-exemption of a given size Account::data.len()
///
/// Note: a stripped-down version of this calculation is used in
/// calculate_split_rent_exempt_reserve in the stake program. When this function is updated, --