Skip to content

Commit

Permalink
reorder slot # in debug hash data path (#27217)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwashington authored Aug 18, 2022
1 parent 4634fb9 commit f115e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit f115e4d

Please sign in to comment.