Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Uses hex for the hash in accounts hash cache file names (#33196)
Browse files Browse the repository at this point in the history
(cherry picked from commit 21e7f98)
  • Loading branch information
brooksprumo committed Sep 13, 2023
1 parent c0dcc77 commit 41942f5
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 @@ -7138,7 +7138,7 @@ impl AccountsDb {
// so, build a file name:
let hash = hasher.finish();
let file_name = format!(
"{}.{}.{}.{}.{}",
"{}.{}.{}.{}.{:016x}",
range_this_chunk.start,
range_this_chunk.end,
bin_range.start,
Expand Down

0 comments on commit 41942f5

Please sign in to comment.