Skip to content

Commit

Permalink
Uses hex for the hash in accounts hash cache file names (solana-labs#…
Browse files Browse the repository at this point in the history
  • Loading branch information
brooksprumo authored Sep 12, 2023
1 parent c61ee20 commit 21e7f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7262,7 +7262,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 21e7f98

Please sign in to comment.