Skip to content
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.

Commit

Permalink
apply code style
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Aug 22, 2024
1 parent 7ab5aaf commit c261b7e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions libs/preset/include/zkevm_framework/preset/bytecode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,9 @@ std::optional<std::string> initialize_bytecode_circuit(
}
cur_selector_id++;
nil::crypto3::zk::snark::pack_lookup_tables_horizontal(
bytecode_circuit.get_reserved_indices(),
bytecode_circuit.get_reserved_tables(),
bytecode_circuit.get_reserved_dynamic_tables(),
bytecode_circuit, bytecode_table, lookup_columns_indices, cur_selector_id,
bytecode_table.rows_amount(), 500000);
bytecode_circuit.get_reserved_indices(), bytecode_circuit.get_reserved_tables(),
bytecode_circuit.get_reserved_dynamic_tables(), bytecode_circuit, bytecode_table,
lookup_columns_indices, cur_selector_id, bytecode_table.rows_amount(), 500000);
// TODO bytecode_table.rows_amount() = 0 here, it's correct?'
return {};
}
Expand Down

0 comments on commit c261b7e

Please sign in to comment.