We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e86887 commit cf73024Copy full SHA for cf73024
eip7594/src/verifier.rs
@@ -327,6 +327,7 @@ fn sanity_check_cells_and_cell_ids(
327
// Check that each cell has the right amount of bytes
328
for (i, cell) in cells.iter().enumerate() {
329
if cell.len() != BYTES_PER_CELL {
330
+ // TODO: This check should always be true
331
return Err(VerifierError::CellDoesNotContainEnoughBytes {
332
cell_id: cell_ids[i],
333
num_bytes: cell.len(),
0 commit comments