From a16f982169eb197fad0eb8c58c307fb069f69d8f Mon Sep 17 00:00:00 2001 From: Brooks Date: Sun, 4 Feb 2024 11:56:12 -0500 Subject: [PATCH] Removes redundant check on STORE_META_OVERHEAD (#35069) --- accounts-db/src/append_vec.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/accounts-db/src/append_vec.rs b/accounts-db/src/append_vec.rs index 578371c45..bf91ca0d1 100644 --- a/accounts-db/src/append_vec.rs +++ b/accounts-db/src/append_vec.rs @@ -729,13 +729,6 @@ pub mod tests { } } - static_assertions::const_assert_eq!( - STORE_META_OVERHEAD, - std::mem::size_of::() - + std::mem::size_of::() - + std::mem::size_of::() - ); - // Hash is [u8; 32], which has no alignment static_assertions::assert_eq_align!(u64, StoredMeta, AccountMeta);