Skip to content

Commit

Permalink
Update table.rs
Browse files Browse the repository at this point in the history
Co-authored-by: malatrax <[email protected]>
  • Loading branch information
rkdud007 and zmalatrax authored Nov 26, 2024
1 parent 43a502a commit b0003c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/brainfuck_prover/src/components/processor/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ impl ProcessorTable {
for i in 1..=padding_offset {
self.add_row(ProcessorTableRow {
clk: last_row.clk + BaseField::from(i),
ip: last_row.ip,
..Default::default()
..last_row.clone()
});
}
}
Expand Down

0 comments on commit b0003c6

Please sign in to comment.