From bcf60701eeb41477a0994621f603f33c716f948e Mon Sep 17 00:00:00 2001 From: Samyak Jain <34437877+KaymasJain@users.noreply.github.com> Date: Tue, 6 Apr 2021 22:12:36 +1000 Subject: [PATCH] Update contracts/receivers2/aave-v2-receiver/main.sol Co-authored-by: Thrilok kumar --- contracts/receivers2/aave-v2-receiver/main.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}