Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit 0b4282f

Browse files
committed
refactor: remove unused method
1 parent 36fd2e3 commit 0b4282f

File tree

1 file changed

+0
-8
lines changed
  • zkevm-circuits/src/evm_circuit

1 file changed

+0
-8
lines changed

zkevm-circuits/src/evm_circuit/util.rs

-8
Original file line numberDiff line numberDiff line change
@@ -475,14 +475,6 @@ impl<'a> StepRws<'a> {
475475
self.offset += 1;
476476
rw
477477
}
478-
/// Return the next rw operations over the next `n` steps.
479-
pub(crate) fn next_n(&mut self, n: usize) -> Vec<Rw> {
480-
let mut rws = Vec::with_capacity(n);
481-
for _ in 0..n {
482-
rws.push(self.next());
483-
}
484-
rws
485-
}
486478
}
487479

488480
#[cfg(test)]

0 commit comments

Comments
 (0)