Do not use node_type

This commit is contained in:
Vitaliy Filippov
2026-04-04 17:37:47 +03:00
parent 280b5cd675
commit 4005b88865
+1 -1
View File
@@ -877,7 +877,7 @@ uint64_t blockstore_impl_t::get_garbage_entries()
uint64_t blockstore_impl_t::get_garbage_memory() uint64_t blockstore_impl_t::get_garbage_memory()
{ {
return sizeof(blockstore_dirty_db_t::node_type) * dirty_db.size(); return (sizeof(obj_ver_id) + sizeof(dirty_entry) + 32) * dirty_db.size();
} }
} // namespace v1 } // namespace v1