From 922c59266df80387f28987cfbaa2baf618e40132 Mon Sep 17 00:00:00 2001 From: jtguibas Date: Thu, 19 Dec 2024 19:10:35 +0000 Subject: [PATCH] hook --- crates/core/executor/src/hook.rs | 1 - crates/verifier/src/tests.rs | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/core/executor/src/hook.rs b/crates/core/executor/src/hook.rs index ead9bb1e49..a2ce720bf0 100644 --- a/crates/core/executor/src/hook.rs +++ b/crates/core/executor/src/hook.rs @@ -132,7 +132,6 @@ pub struct HookEnv<'a, 'b: 'a> { /// WARNING: This function is used to recover the public key outside of the zkVM context. These /// values must be constrained by the zkVM for correctness. #[must_use] -#[deprecated = "Use `hook_ecrecover_v2` instead."] pub fn hook_ecrecover(_: HookEnv, buf: &[u8]) -> Vec> { assert_eq!(buf.len(), 65 + 32, "ecrecover input should have length 65 + 32"); let (sig, msg_hash) = buf.split_at(65); diff --git a/crates/verifier/src/tests.rs b/crates/verifier/src/tests.rs index e99d71ebd9..3cda26694a 100644 --- a/crates/verifier/src/tests.rs +++ b/crates/verifier/src/tests.rs @@ -3,6 +3,7 @@ use sp1_sdk::{install::try_install_circuit_artifacts, SP1ProofWithPublicValues}; extern crate std; #[test] +#[ignore] fn test_verify_groth16() { // Location of the serialized SP1ProofWithPublicValues. See README.md for more information. let proof_file = "test_binaries/fibonacci-groth16.bin"; @@ -21,6 +22,7 @@ fn test_verify_groth16() { } #[test] +#[ignore] fn test_verify_plonk() { // Location of the serialized SP1ProofWithPublicValues. See README.md for more information. let proof_file = "test_binaries/fibonacci-plonk.bin"; @@ -39,6 +41,7 @@ fn test_verify_plonk() { } #[test] +#[ignore] fn test_vkeys() { let groth16_path = try_install_circuit_artifacts("groth16"); let s3_vkey_path = groth16_path.join("groth16_vk.bin");