소스 검색

Remove code that prevent building in golang

Cesar Rodas 2 달 전
부모
커밋
d958d3912c
1개의 변경된 파일0개의 추가작업 그리고 8개의 파일을 삭제
  1. 0 8
      crates/cdk-ffi/src/database.rs

+ 0 - 8
crates/cdk-ffi/src/database.rs

@@ -204,14 +204,6 @@ pub struct WalletDatabaseTransactionWrapper {
     inner: Arc<dyn WalletDatabaseTransaction>,
 }
 
-#[uniffi::export]
-impl WalletDatabaseTransactionWrapper {
-    #[uniffi::constructor]
-    pub fn new(inner: Arc<dyn WalletDatabaseTransaction>) -> Self {
-        Self { inner }
-    }
-}
-
 impl Deref for WalletDatabaseTransactionWrapper {
     type Target = Arc<dyn WalletDatabaseTransaction>;