Skip to content

Commit e25cc76

Browse files
committed
fixed compilation
1 parent cdff533 commit e25cc76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wrapper_generator/src/end_params_generator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ pub fn generate_params_for_binary_and_machine(
5454
match machine {
5555
MachineType::Standard => execution_utils::compute_end_parameters(
5656
expected_final_pc,
57-
&setups::get_main_riscv_circuit_setup::<Global>(&binary, &worker),
57+
&setups::get_main_riscv_circuit_setup::<Global, Global>(&binary, &worker),
5858
),
5959
MachineType::Reduced => execution_utils::compute_end_parameters(
6060
expected_final_pc,
61-
&setups::get_reduced_riscv_circuit_setup::<Global>(&binary, &worker),
61+
&setups::get_reduced_riscv_circuit_setup::<Global, Global>(&binary, &worker),
6262
),
6363

6464
MachineType::ReducedFinal => execution_utils::compute_end_parameters(
6565
expected_final_pc,
66-
&setups::get_final_reduced_riscv_circuit_setup::<Global>(&binary, &worker),
66+
&setups::get_final_reduced_riscv_circuit_setup::<Global, Global>(&binary, &worker),
6767
),
6868
}
6969
}

0 commit comments

Comments
 (0)