Skip to content

Commit

Permalink
fix: block stack table
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer committed Sep 24, 2024
1 parent 8e9fe06 commit efb1ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion processor/src/decoder/aux_trace/block_stack_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn get_block_stack_table_removal_multiplicand<E: FieldElement<BaseField = Felt>>
parent_fn_hash[0],
parent_fn_hash[1],
parent_fn_hash[2],
parent_fn_hash[0],
parent_fn_hash[3],
]
} else {
let mut result = [ZERO; 12];
Expand Down
1 change: 1 addition & 0 deletions processor/src/decoder/aux_trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ impl AuxTraceBuilder {
let p2 = block_hash_column_builder.build_aux_column(main_trace, rand_elements);
let p3 = op_group_table_column_builder.build_aux_column(main_trace, rand_elements);

debug_assert_eq!(*p1.last().unwrap(), E::ONE);
debug_assert_eq!(*p2.last().unwrap(), E::ONE);
debug_assert_eq!(*p3.last().unwrap(), E::ONE);

Expand Down

0 comments on commit efb1ec9

Please sign in to comment.