Skip to content

Commit

Permalink
fix: long tail assets config
Browse files Browse the repository at this point in the history
  • Loading branch information
EvolveArt committed Jul 23, 2024
1 parent c7b78dd commit eda61ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ lazy_static! {
/// the monitoring service).
pub static ref LONG_TAIL_ASSETS: HashMap<String, f64> = {
let mut map = HashMap::new();
map.insert("ZEND/USD".to_string(), 0.1);
map.insert("NSTR/USD".to_string(), 0.15);
map.insert("ZEND/USD".to_string(), 0.05);
map.insert("NSTR/USD".to_string(), 0.05);
map.insert("LUSD/USD".to_string(), 0.05);
map.insert("LORDS/USD".to_string(), 0.05);
map
};

Expand Down

0 comments on commit eda61ba

Please sign in to comment.