Skip to content

Commit

Permalink
add comments (solana-labs#33226)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwashington authored Sep 12, 2023
1 parent bdf7207 commit 3ffd78f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,9 @@ struct GenerateIndexTimings {

#[derive(Default, Debug, PartialEq, Eq)]
struct StorageSizeAndCount {
/// total size stored, including both alive and dead bytes
pub stored_size: usize,
/// number of accounts in the storage including both alive and dead accounts
pub count: usize,
}
type StorageSizeAndCountMap = DashMap<AppendVecId, StorageSizeAndCount>;
Expand Down

0 comments on commit 3ffd78f

Please sign in to comment.