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 b4ced6e commit 14aa2b8Copy full SHA for 14aa2b8
build.rs
@@ -56,6 +56,10 @@ fn main() {
56
.parse()
57
.expect("SEMAPHORE_DEPTH must be a valid usize");
58
59
+ if depth > 32 {
60
+ panic!("The tree depth must be less than 32.");
61
+ }
62
+
63
download_semaphore_artifacts(depth).expect("Failed to download artifacts");
64
65
rust_witness::transpile::transpile_wasm("./zkey".to_string());
0 commit comments