mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
refactor isETH condition
This commit is contained in:
parent
48980f7509
commit
0ea3c5613c
|
@ -201,11 +201,9 @@ abstract contract MorphoCompound is Helpers, Events {
|
||||||
{
|
{
|
||||||
uint256 _amt = getUint(_getId, _amount);
|
uint256 _amt = getUint(_getId, _amount);
|
||||||
|
|
||||||
bool _isETH = _tokenAddress == ethAddr;
|
|
||||||
|
|
||||||
MORPHO_COMPOUND.borrow(_poolTokenAddress, _amt, _maxGasForMatching);
|
MORPHO_COMPOUND.borrow(_poolTokenAddress, _amt, _maxGasForMatching);
|
||||||
|
|
||||||
if (_isETH) convertWethToEth(_isETH, TokenInterface(wethAddr), _amt);
|
convertWethToEth(_tokenAddress == ethAddr, TokenInterface(wethAddr), _amt);
|
||||||
|
|
||||||
setUint(_setId, _amt);
|
setUint(_setId, _amt);
|
||||||
|
|
||||||
|
@ -252,7 +250,7 @@ abstract contract MorphoCompound is Helpers, Events {
|
||||||
|
|
||||||
MORPHO_COMPOUND.withdraw(_poolTokenAddress, _amt);
|
MORPHO_COMPOUND.withdraw(_poolTokenAddress, _amt);
|
||||||
|
|
||||||
if (_isETH) convertWethToEth(_isETH, TokenInterface(wethAddr), _amt);
|
convertWethToEth(_isETH, TokenInterface(wethAddr), _amt);
|
||||||
|
|
||||||
setUint(_setId, _amt);
|
setUint(_setId, _amt);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user