runtime: fix typo recalcluate -> recalculate (#27892)

This commit is contained in:
Ian Macalinao 2022-09-17 22:57:38 -05:00 committed by GitHub
parent 9cec2ef577
commit c1c93adf67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ impl ExpectedRentCollection {
} => {
if next_epoch > current_rent_epoch && rent_due != 0 {
// this is an account that would have had rent collected since this storage slot, so just use the hash we have since there must be a newer version of this account already in a newer slot
// It would be a waste of time to recalcluate a hash.
// It would be a waste of time to recalculate a hash.
return None;
}
std::cmp::max(next_epoch, current_rent_epoch)