diff --git a/contracts/receivers2/aave-v2-receiver/main.sol b/contracts/receivers2/aave-v2-receiver/main.sol index bd1fe3c..61f5bd7 100644 --- a/contracts/receivers2/aave-v2-receiver/main.sol +++ b/contracts/receivers2/aave-v2-receiver/main.sol @@ -13,7 +13,7 @@ contract MigrateResolver is Helpers, Events { // This will be used to have debt/collateral ratio always 20% less than liquidation // TODO: Is this number correct for it? - uint public safeRatioGap = 20000000000000000; // 20%? + uint public safeRatioGap = 200000000000000000; // 20%? 2e17 // dsa => position mapping(uint => AaveData) public positions; @@ -192,4 +192,4 @@ contract AaveV2Migrator is MigrateResolver { delete positions[_id]; } -} \ No newline at end of file +}