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 03752e2 commit 372f953Copy full SHA for 372f953
sdk/src/local/prover.rs
@@ -67,7 +67,7 @@ impl ProverTask {
67
"verifier_only_circuit_data.json",
68
"verifier.sol",
69
];
70
- std::fs::create_dir_all(format!("{}", key_path)).unwrap();
+ std::fs::create_dir_all(&key_path).unwrap();
71
target_files.iter().for_each(|f| {
72
std::fs::copy(format!("{inputdir}/{f}"), format!("{key_path}/{f}")).unwrap();
73
});
0 commit comments