Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sai-deng committed Sep 30, 2024
1 parent ce88ef8 commit a23eaf0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion evm_arithmetization/src/fixed_recursive_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,11 @@ where
if KECCAK_TABLES_INDICES.contains(&i) {
// Ensure the challenger state:
// 1) prev == current_before when using Keccak
builder. conditional_assert_eq(use_keccak_tables.target, prev_state[j], current_state_before[j]);
builder.conditional_assert_eq(
use_keccak_tables.target,
prev_state[j],
current_state_before[j],
);
// 2) Update prev <- current_after when using Keccak
// 3) Keep prev <- prev when skipping Keccak
prev_state[j] =
Expand Down

0 comments on commit a23eaf0

Please sign in to comment.