thesimplekid 2 hónapja
szülő
commit
335bac7bca

+ 0 - 3
crates/cdk-integration-tests/tests/mint.rs

@@ -17,7 +17,6 @@ use cdk::nuts::{
     ProofState, Proofs, SecretKey, SpendingConditions, State, SwapRequest,
 };
 use cdk::subscription::{IndexableParams, Params};
-use cdk::types::QuoteTTL;
 use cdk::util::unix_time;
 use cdk::Mint;
 use tokio::sync::OnceCell;
@@ -50,8 +49,6 @@ async fn new_mint(fee: u64) -> Mint {
         .expect("Could not set mint info");
     let mnemonic = Mnemonic::generate(12).unwrap();
 
-    let quote_ttl = QuoteTTL::new(10000, 10000);
-
     Mint::new(
         &mnemonic.to_seed_normalized(""),
         Arc::new(localstore),

+ 1 - 1
crates/cdk/src/cdk_database/mint_memory.rs

@@ -444,6 +444,6 @@ impl MintDatabase for MintMemoryDatabase {
     async fn get_quote_ttl(&self) -> Result<QuoteTTL, Self::Err> {
         let quote_ttl = self.quote_ttl.read().await;
 
-        Ok(quote_ttl.clone())
+        Ok(*quote_ttl)
     }
 }