Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions zkevm-circuits/src/evm_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use witness::Block;
pub struct EvmCircuit<F> {
fixed_table: [Column<Fixed>; 4],
byte_table: [Column<Fixed>; 1],
execution: ExecutionConfig<F>,
execution: Box<ExecutionConfig<F>>,
}

impl<F: Field> EvmCircuit<F> {
Expand All @@ -38,7 +38,7 @@ impl<F: Field> EvmCircuit<F> {
let fixed_table = [(); 4].map(|_| meta.fixed_column());
let byte_table = [(); 1].map(|_| meta.fixed_column());

let execution = ExecutionConfig::configure(
let execution = Box::new(ExecutionConfig::configure(
meta,
power_of_randomness,
&fixed_table,
Expand All @@ -47,7 +47,7 @@ impl<F: Field> EvmCircuit<F> {
rw_table,
bytecode_table,
block_table,
);
));

Self {
fixed_table,
Expand Down