Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6532,16 +6532,6 @@ impl AccountsDb {
self.stats.create_store_count.swap(0, Ordering::Relaxed),
i64
),
(
"store_get_slot_store",
self.stats.store_get_slot_store.swap(0, Ordering::Relaxed),
i64
),
(
"store_find_existing",
self.stats.store_find_existing.swap(0, Ordering::Relaxed),
i64
),
(
"dropped_stores",
self.stats.dropped_stores.swap(0, Ordering::Relaxed),
Expand Down
2 changes: 0 additions & 2 deletions accounts-db/src/accounts_db/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ pub struct AccountsStats {
pub store_num_accounts: AtomicU64,
pub store_total_data: AtomicU64,
pub create_store_count: AtomicU64,
pub store_get_slot_store: AtomicU64,
pub store_find_existing: AtomicU64,
pub dropped_stores: AtomicU64,
pub handle_dead_keys_us: AtomicU64,
pub purge_exact_us: AtomicU64,
Expand Down
Loading