diff --git a/fuel-vm/src/interpreter/memory.rs b/fuel-vm/src/interpreter/memory.rs index 7372624b4..aa46a4587 100644 --- a/fuel-vm/src/interpreter/memory.rs +++ b/fuel-vm/src/interpreter/memory.rs @@ -1145,10 +1145,7 @@ fn slices_equal_avx2(a: &[u8], b: &[u8]) -> bool { _mm256_and_si256(cmp3, cmp4), ); - dbg!(combined); - dbg!(_mm256_testz_si256(combined, combined)); - - if _mm256_testz_si256(combined, combined) == 0 { + if _mm256_testz_si256(combined, combined) != 0 { return false; }