Removes redundant check on STORE_META_OVERHEAD (#35069)

This commit is contained in:
Brooks 2024-02-04 11:56:12 -05:00 committed by GitHub
parent cb0f13ef07
commit a16f982169
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -729,13 +729,6 @@ pub mod tests {
}
}
static_assertions::const_assert_eq!(
STORE_META_OVERHEAD,
std::mem::size_of::<StoredMeta>()
+ std::mem::size_of::<AccountMeta>()
+ std::mem::size_of::<Hash>()
);
// Hash is [u8; 32], which has no alignment
static_assertions::assert_eq_align!(u64, StoredMeta, AccountMeta);