|
@@ -7,7 +7,7 @@ use std::sync::Arc;
|
|
|
use arc_swap::ArcSwap;
|
|
|
|
|
|
use super::{Id, MintInfo, MintKeySet};
|
|
|
-use crate::mint_url::MintUrl;
|
|
|
+use crate::{mint_url::MintUrl, types::QuoteTTL};
|
|
|
|
|
|
/// Mint Inner configuration
|
|
|
pub struct Config {
|
|
@@ -17,6 +17,8 @@ pub struct Config {
|
|
|
pub mint_info: MintInfo,
|
|
|
/// Mint config
|
|
|
pub mint_url: MintUrl,
|
|
|
+ /// Quotes ttl
|
|
|
+ pub quote_ttl: QuoteTTL,
|
|
|
}
|
|
|
|
|
|
/// Mint configuration
|
|
@@ -33,9 +35,15 @@ pub struct SwappableConfig {
|
|
|
|
|
|
impl SwappableConfig {
|
|
|
/// Creates a new configuration instance
|
|
|
- pub fn new(mint_url: MintUrl, mint_info: MintInfo, keysets: HashMap<Id, MintKeySet>) -> Self {
|
|
|
+ pub fn new(
|
|
|
+ mint_url: MintUrl,
|
|
|
+ quote_ttl: QuoteTTL,
|
|
|
+ mint_info: MintInfo,
|
|
|
+ keysets: HashMap<Id, MintKeySet>,
|
|
|
+ ) -> Self {
|
|
|
let inner = Config {
|
|
|
keysets,
|
|
|
+ quote_ttl,
|
|
|
mint_info,
|
|
|
mint_url,
|
|
|
};
|
|
@@ -60,6 +68,7 @@ impl SwappableConfig {
|
|
|
let current_inner = self.load();
|
|
|
let new_inner = Config {
|
|
|
mint_url,
|
|
|
+ quote_ttl: current_inner.quote_ttl.clone(),
|
|
|
mint_info: current_inner.mint_info.clone(),
|
|
|
keysets: current_inner.keysets.clone(),
|
|
|
};
|
|
@@ -67,6 +76,24 @@ impl SwappableConfig {
|
|
|
self.config.store(Arc::new(new_inner));
|
|
|
}
|
|
|
|
|
|
+ /// Gets a copy of the quote ttl
|
|
|
+ pub fn quote_ttl(&self) -> QuoteTTL {
|
|
|
+ self.load().quote_ttl.clone()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Replaces the current quote ttl with a new one
|
|
|
+ pub fn set_quote_ttl(&self, quote_ttl: QuoteTTL) {
|
|
|
+ let current_inner = self.load();
|
|
|
+ let new_inner = Config {
|
|
|
+ mint_info: current_inner.mint_info.clone(),
|
|
|
+ mint_url: current_inner.mint_url.clone(),
|
|
|
+ quote_ttl,
|
|
|
+ keysets: current_inner.keysets.clone(),
|
|
|
+ };
|
|
|
+
|
|
|
+ self.config.store(Arc::new(new_inner));
|
|
|
+ }
|
|
|
+
|
|
|
/// Gets a copy of the mint info
|
|
|
pub fn mint_info(&self) -> MintInfo {
|
|
|
self.load().mint_info.clone()
|
|
@@ -78,6 +105,7 @@ impl SwappableConfig {
|
|
|
let new_inner = Config {
|
|
|
mint_info,
|
|
|
mint_url: current_inner.mint_url.clone(),
|
|
|
+ quote_ttl: current_inner.quote_ttl.clone(),
|
|
|
keysets: current_inner.keysets.clone(),
|
|
|
};
|
|
|
|
|
@@ -89,6 +117,7 @@ impl SwappableConfig {
|
|
|
let current_inner = self.load();
|
|
|
let new_inner = Config {
|
|
|
mint_info: current_inner.mint_info.clone(),
|
|
|
+ quote_ttl: current_inner.quote_ttl.clone(),
|
|
|
mint_url: current_inner.mint_url.clone(),
|
|
|
keysets,
|
|
|
};
|