diff --git a/crates/prover-executor/src/error.rs b/crates/prover-executor/src/error.rs index 05e2aeb2..de7cf53f 100644 --- a/crates/prover-executor/src/error.rs +++ b/crates/prover-executor/src/error.rs @@ -52,7 +52,7 @@ impl From for ProofVerificationError { SP1VerificationError::InvalidPublicValues => { ProofVerificationError::InvalidPublicValues } - SP1VerificationError::Other(error) => ProofVerificationError::Core(error.to_string()), + SP1VerificationError::Other(error) => ProofVerificationError::Other(error.to_string()), } } }