fix: added return values to seize()

This commit is contained in:
emilio 2021-09-01 17:34:25 +02:00
parent 7a2eece3ad
commit 303600a526

View File

@ -88,6 +88,7 @@ contract LendingPoolCollateralManager is
aToken.burn(user, to, userBalance, reserve.liquidityIndex);
emit Seized(user, to, asset, userBalance);
}
return (uint256(Errors.CollateralManagerErrors.NO_ERROR), Errors.LPCM_NO_ERRORS);
}
/**