Skip to content

Commit

Permalink
Update hard limits of some config parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
larry0x committed Mar 7, 2022
1 parent aab6200 commit 16e1165
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fields-of-mars/src/martian_field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use cw_asset::{AssetInfoBase, AssetListBase};

use crate::adapters::{GeneratorBase, OracleBase, PairBase, RedBankBase};

const MIN_MAX_LTV: &str = "0.75";
const MAX_MAX_LTV: &str = "0.9";
const MAX_FEE_RATE: &str = "0.2";
const MIN_MAX_LTV: &str = "0.55";
const MAX_MAX_LTV: &str = "0.75";
const MAX_FEE_RATE: &str = "0.1";
const MAX_BONUS_RATE: &str = "0.1";

//--------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 16e1165

Please sign in to comment.