refactor isETH

This commit is contained in:
Thrilok kumar 2022-10-15 22:28:33 +05:30 committed by GitHub
parent 32754bea19
commit a069f9569e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,11 +161,9 @@ abstract contract MorphoCompound is Helpers, Events {
{
uint256 _amt = getUint(_getId, _amount);
bool _isETH = _tokenAddress == ethAddr;
MORPHO_COMPOUND.borrow(_poolTokenAddress, _amt);
if (_isETH) convertWethToEth(_isETH, TokenInterface(wethAddr), _amt);
convertWethToEth(_tokenAddress == ethAddr, TokenInterface(wethAddr), _amt);
setUint(_setId, _amt);