|
@@ -6,15 +6,13 @@ use std::sync::Arc;
|
|
|
|
|
|
use arc_swap::ArcSwap;
|
|
|
|
|
|
-use super::{Id, MintInfo, MintKeySet};
|
|
|
+use super::{Id, MintKeySet};
|
|
|
use crate::types::QuoteTTL;
|
|
|
|
|
|
/// Mint Inner configuration
|
|
|
pub struct Config {
|
|
|
/// Active Mint Keysets
|
|
|
pub keysets: HashMap<Id, MintKeySet>,
|
|
|
- /// Mint url
|
|
|
- pub mint_info: MintInfo,
|
|
|
/// Quotes ttl
|
|
|
pub quote_ttl: QuoteTTL,
|
|
|
}
|
|
@@ -33,12 +31,8 @@ pub struct SwappableConfig {
|
|
|
|
|
|
impl SwappableConfig {
|
|
|
/// Creates a new configuration instance
|
|
|
- pub fn new(quote_ttl: QuoteTTL, mint_info: MintInfo, keysets: HashMap<Id, MintKeySet>) -> Self {
|
|
|
- let inner = Config {
|
|
|
- keysets,
|
|
|
- quote_ttl,
|
|
|
- mint_info,
|
|
|
- };
|
|
|
+ pub fn new(quote_ttl: QuoteTTL, keysets: HashMap<Id, MintKeySet>) -> Self {
|
|
|
+ let inner = Config { keysets, quote_ttl };
|
|
|
|
|
|
Self {
|
|
|
config: Arc::new(ArcSwap::from_pointee(inner)),
|
|
@@ -59,7 +53,6 @@ impl SwappableConfig {
|
|
|
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(),
|
|
|
quote_ttl,
|
|
|
keysets: current_inner.keysets.clone(),
|
|
|
};
|
|
@@ -67,28 +60,10 @@ impl SwappableConfig {
|
|
|
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()
|
|
|
- }
|
|
|
-
|
|
|
- /// Replaces the current mint info with a new one
|
|
|
- pub fn set_mint_info(&self, mint_info: MintInfo) {
|
|
|
- let current_inner = self.load();
|
|
|
- let new_inner = Config {
|
|
|
- mint_info,
|
|
|
- quote_ttl: current_inner.quote_ttl,
|
|
|
- keysets: current_inner.keysets.clone(),
|
|
|
- };
|
|
|
-
|
|
|
- self.config.store(Arc::new(new_inner));
|
|
|
- }
|
|
|
-
|
|
|
/// Replaces the current keysets with a new one
|
|
|
pub fn set_keysets(&self, keysets: HashMap<Id, MintKeySet>) {
|
|
|
let current_inner = self.load();
|
|
|
let new_inner = Config {
|
|
|
- mint_info: current_inner.mint_info.clone(),
|
|
|
quote_ttl: current_inner.quote_ttl,
|
|
|
keysets,
|
|
|
};
|