mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 22:04:44 +00:00
Add more passing tests for vec hash caching
This commit is contained in:
@@ -109,8 +109,8 @@ where
|
||||
) -> Result<usize, Error> {
|
||||
let offset_handler = OffsetHandler::new(self, chunk)?;
|
||||
|
||||
if self.len() != other.len() {
|
||||
panic!("variable sized lists not implemented");
|
||||
if self.len().next_power_of_two() != other.len().next_power_of_two() {
|
||||
panic!("not implemented: vary between power-of-two boundary");
|
||||
}
|
||||
|
||||
match T::item_type() {
|
||||
|
||||
Reference in New Issue
Block a user