mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
- Relax condition on cumulateToLiquidityIndex()
This commit is contained in:
parent
e1f636ccd6
commit
977a25aee2
|
@ -150,7 +150,7 @@ library ReserveLogic {
|
|||
uint256 result = amountToLiquidityRatio.add(WadRayMath.ray());
|
||||
|
||||
result = result.rayMul(reserve.liquidityIndex);
|
||||
require(result < type(uint128).max, Errors.RL_LIQUIDITY_INDEX_OVERFLOW);
|
||||
require(result <= type(uint128).max, Errors.RL_LIQUIDITY_INDEX_OVERFLOW);
|
||||
|
||||
reserve.liquidityIndex = uint128(result);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user