Skip to content

Commit

Permalink
v1.16: Uses hex for the hash in accounts hash cache file names (backp…
Browse files Browse the repository at this point in the history
…ort of #33196) (#33223)

(cherry picked from commit 21e7f98)

Co-authored-by: Brooks <brooks@solana.com>
  • Loading branch information
mergify[bot] and brooksprumo authored Sep 15, 2023
1 parent 988641d commit 3c3b517
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 @@ -7135,7 +7135,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 3c3b517

Please sign in to comment.