|  | @@ -10,31 +10,31 @@ pub enum Error {
 | 
											
												
													
														|  |      SQLX(#[from] sqlx::Error),
 |  |      SQLX(#[from] sqlx::Error),
 | 
											
												
													
														|  |      /// NUT00 Error
 |  |      /// NUT00 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT00(#[from] cdk_common::nuts::nut00::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT00(#[from] cashu::nuts::nut00::Error),
 | 
											
												
													
														|  |      /// NUT01 Error
 |  |      /// NUT01 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT01(#[from] cdk_common::nuts::nut01::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT01(#[from] cashu::nuts::nut01::Error),
 | 
											
												
													
														|  |      /// NUT02 Error
 |  |      /// NUT02 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT02(#[from] cdk_common::nuts::nut02::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT02(#[from] cashu::nuts::nut02::Error),
 | 
											
												
													
														|  |      /// NUT04 Error
 |  |      /// NUT04 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT04(#[from] cdk_common::nuts::nut04::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT04(#[from] cashu::nuts::nut04::Error),
 | 
											
												
													
														|  |      /// NUT05 Error
 |  |      /// NUT05 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT05(#[from] cdk_common::nuts::nut05::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT05(#[from] cashu::nuts::nut05::Error),
 | 
											
												
													
														|  |      /// NUT07 Error
 |  |      /// NUT07 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKNUT07(#[from] cdk_common::nuts::nut07::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKNUT07(#[from] cashu::nuts::nut07::Error),
 | 
											
												
													
														|  |      /// Secret Error
 |  |      /// Secret Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    CDKSECRET(#[from] cdk_common::secret::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    CDKSECRET(#[from] cashu::secret::Error),
 | 
											
												
													
														|  |      /// BIP32 Error
 |  |      /// BIP32 Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  |      BIP32(#[from] bitcoin::bip32::Error),
 |  |      BIP32(#[from] bitcoin::bip32::Error),
 | 
											
												
													
														|  |      /// Mint Url Error
 |  |      /// Mint Url Error
 | 
											
												
													
														|  |      #[error(transparent)]
 |  |      #[error(transparent)]
 | 
											
												
													
														|  | -    MintUrl(#[from] cdk_common::mint_url::Error),
 |  | 
 | 
											
												
													
														|  | 
 |  | +    MintUrl(#[from] cashu::mint_url::Error),
 | 
											
												
													
														|  |      /// Could Not Initialize Database
 |  |      /// Could Not Initialize Database
 | 
											
												
													
														|  |      #[error("Could not initialize database")]
 |  |      #[error("Could not initialize database")]
 | 
											
												
													
														|  |      CouldNotInitialize,
 |  |      CouldNotInitialize,
 | 
											
										
											
												
													
														|  | @@ -46,7 +46,7 @@ pub enum Error {
 | 
											
												
													
														|  |      Serde(#[from] serde_json::Error),
 |  |      Serde(#[from] serde_json::Error),
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -impl From<Error> for cdk_common::database::Error {
 |  | 
 | 
											
												
													
														|  | 
 |  | +impl From<Error> for cashu::database::Error {
 | 
											
												
													
														|  |      fn from(e: Error) -> Self {
 |  |      fn from(e: Error) -> Self {
 | 
											
												
													
														|  |          Self::Database(Box::new(e))
 |  |          Self::Database(Box::new(e))
 | 
											
												
													
														|  |      }
 |  |      }
 |