diff --git a/accounts-db/src/accounts_db.rs b/accounts-db/src/accounts_db.rs index 2857180bf..deae0d0ce 100644 --- a/accounts-db/src/accounts_db.rs +++ b/accounts-db/src/accounts_db.rs @@ -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;