diff --git a/accounts-db/src/accounts_index/account_map_entry.rs b/accounts-db/src/accounts_index/account_map_entry.rs index be0f6b4c6edefc..c75616e3265eb6 100644 --- a/accounts-db/src/accounts_index/account_map_entry.rs +++ b/accounts-db/src/accounts_index/account_map_entry.rs @@ -23,7 +23,7 @@ pub struct AccountMapEntry { /// purge_slot() also removes non-rooted slots from this list slot_list: RwLock>, /// synchronization metadata for in-memory state since last flush to disk accounts index - pub meta: AccountMapEntryMeta, + meta: AccountMapEntryMeta, } impl AccountMapEntry { @@ -126,9 +126,9 @@ impl AccountMapEntry { #[derive(Debug, Default)] pub struct AccountMapEntryMeta { /// true if entry in in-mem idx has changes and needs to be written to disk - pub dirty: AtomicBool, + dirty: AtomicBool, /// 'age' at which this entry should be purged from the cache (implements lru) - pub age: AtomicAge, + age: AtomicAge, } impl AccountMapEntryMeta {