We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c1b75 commit 3122ce7Copy full SHA for 3122ce7
crates/cli/src/commands/setup.rs
@@ -8,6 +8,7 @@ use aws_sdk_s3::Client;
8
use clap::Parser;
9
use eyre::{eyre, Result};
10
use openvm_sdk::{
11
+ config::DEFAULT_HALO2_VERIFIER_K,
12
fs::{
13
read_object_from_file, write_evm_halo2_verifier_to_folder, write_object_to_file,
14
EVM_HALO2_VERIFIER_BASE_NAME, EVM_HALO2_VERIFIER_INTERFACE_NAME,
@@ -98,7 +99,7 @@ impl SetupCmd {
98
99
));
100
}
101
- Self::download_params(10, 24).await?;
102
+ Self::download_params(10, DEFAULT_HALO2_VERIFIER_K as u32).await?;
103
// halo2 keygen does not depend on the app config
104
let sdk = Sdk::standard();
105
0 commit comments