소스 검색

fix: client only on when wallet feature enabled

thesimplekid 1 년 전
부모
커밋
fb285fcf47
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      crates/cashu-sdk/src/lib.rs

+ 1 - 1
crates/cashu-sdk/src/lib.rs

@@ -6,7 +6,7 @@ use tokio::runtime::Runtime;
 #[cfg(feature = "blocking")]
 use futures_util::Future;
 
-// #[cfg(feature = "wallet")]
+#[cfg(feature = "wallet")]
 pub(crate) mod client;
 
 #[cfg(feature = "mint")]