From 6911fddd305cc49f31c84b778424b85f2806cd43 Mon Sep 17 00:00:00 2001 From: Zhang Zhuo Date: Wed, 9 Oct 2024 13:01:06 +0800 Subject: [PATCH] enable debug --- crates/sdk/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sdk/src/lib.rs b/crates/sdk/src/lib.rs index 5d29102268..87ce882627 100644 --- a/crates/sdk/src/lib.rs +++ b/crates/sdk/src/lib.rs @@ -70,8 +70,8 @@ impl ProverClient { /// let client = ProverClient::new(); /// ``` pub fn new() -> Self { - #[cfg(debug_assertions)] - panic!("sp1-sdk must be built in release mode. please compile with the --release flag."); + //#[cfg(debug_assertions)] + //panic!("sp1-sdk must be built in release mode. please compile with the --release flag."); #[allow(unreachable_code)] match env::var("SP1_PROVER").unwrap_or("local".to_string()).to_lowercase().as_str() {