Skip to content

Commit f2b4e70

Browse files
committed
disable proof verification
1 parent 6f100f1 commit f2b4e70

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

common/libzkp/impl/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ fn verify_proof(proof: *const c_char, fork_name: *const c_char, task_type: TaskT
2828
let fork_name_str = c_char_to_str(fork_name);
2929
// Skip verification for darwinV2 as we can't host darwinV2 and euclid verifiers on the same
3030
// binary.
31-
if fork_name_str == "darwinV2" {
32-
return true as c_char;
33-
}
31+
return true as c_char;
3432

3533
let proof = c_char_to_vec(proof);
3634
let verifier = verifier::get_verifier(fork_name_str);

0 commit comments

Comments
 (0)