mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-24 08:33:12 +00:00
fix
This commit is contained in:
parent
901525c185
commit
9d118ca1ef
@ -47,7 +47,7 @@ impl<F: RichField + Extendable<D>, const D: usize> KeccakStark<F, D> {
|
||||
let num_rows = (inputs.len() * NUM_ROUNDS).next_power_of_two();
|
||||
info!("{} rows", num_rows);
|
||||
let mut rows = Vec::with_capacity(num_rows);
|
||||
for input in inputs.iter().take(1) {
|
||||
for input in inputs.iter() {
|
||||
rows.extend(self.generate_trace_rows_for_perm(*input));
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user