From 3ffd78f2d79d451560d0e09432713417a65e8dda Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Tue, 12 Sep 2023 13:51:27 -0700 Subject: [PATCH] add comments (#33226) --- accounts-db/src/accounts_db.rs | 2 ++ 1 file changed, 2 insertions(+) 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;