|
@@ -4,6 +4,7 @@ use std::collections::HashMap;
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
use async_trait::async_trait;
|
|
|
+use cdk_common::common::QuoteTTL;
|
|
|
use cdk_common::database::{Error, MintDatabase};
|
|
|
use cdk_common::mint::MintKeySetInfo;
|
|
|
use cdk_common::nut00::ProofsMethods;
|
|
@@ -35,6 +36,7 @@ pub struct MintMemoryDatabase {
|
|
|
quote_signatures: Arc<RwLock<HashMap<Uuid, Vec<BlindSignature>>>>,
|
|
|
melt_requests: Arc<RwLock<HashMap<Uuid, (MeltBolt11Request<Uuid>, LnKey)>>>,
|
|
|
mint_info: Arc<RwLock<MintInfo>>,
|
|
|
+ quote_ttl: Arc<RwLock<QuoteTTL>>,
|
|
|
}
|
|
|
|
|
|
impl MintMemoryDatabase {
|
|
@@ -52,6 +54,7 @@ impl MintMemoryDatabase {
|
|
|
quote_signatures: HashMap<Uuid, Vec<BlindSignature>>,
|
|
|
melt_request: Vec<(MeltBolt11Request<Uuid>, LnKey)>,
|
|
|
mint_info: MintInfo,
|
|
|
+ quote_ttl: QuoteTTL,
|
|
|
) -> Result<Self, Error> {
|
|
|
let mut proofs = HashMap::new();
|
|
|
let mut proof_states = HashMap::new();
|
|
@@ -91,6 +94,7 @@ impl MintMemoryDatabase {
|
|
|
quote_signatures: Arc::new(RwLock::new(quote_signatures)),
|
|
|
melt_requests: Arc::new(RwLock::new(melt_requests)),
|
|
|
mint_info: Arc::new(RwLock::new(mint_info)),
|
|
|
+ quote_ttl: Arc::new(RwLock::new(quote_ttl)),
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -429,4 +433,17 @@ impl MintDatabase for MintMemoryDatabase {
|
|
|
|
|
|
Ok(mint_info.clone())
|
|
|
}
|
|
|
+
|
|
|
+ async fn set_quote_ttl(&self, quote_ttl: QuoteTTL) -> Result<(), Self::Err> {
|
|
|
+ let mut current_quote_ttl = self.quote_ttl.write().await;
|
|
|
+
|
|
|
+ *current_quote_ttl = quote_ttl;
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+ async fn get_quote_ttl(&self) -> Result<QuoteTTL, Self::Err> {
|
|
|
+ let quote_ttl = self.quote_ttl.read().await;
|
|
|
+
|
|
|
+ Ok(quote_ttl.clone())
|
|
|
+ }
|
|
|
}
|