reorder slot # in debug hash data path (#27217)

This commit is contained in:
Jeff Washington (jwash) 2022-08-18 11:30:11 -05:00 committed by GitHub
parent 4634fb944c
commit f115e4d0ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6876,8 +6876,8 @@ impl AccountsDb {
} else {
// this path executes when we are failing with a hash mismatch
let mut new = self.accounts_hash_cache_path.clone();
new.push(slot.to_string());
new.push("failed_calculate_accounts_hash_cache");
new.push(slot.to_string());
let _ = std::fs::remove_dir_all(&new);
CacheHashData::new(&new)
}