From 303600a5260c11e1ca7027b9f0bfdcae99ec406b Mon Sep 17 00:00:00 2001 From: emilio Date: Wed, 1 Sep 2021 17:34:25 +0200 Subject: [PATCH] fix: added return values to seize() --- contracts/protocol/lendingpool/LendingPoolCollateralManager.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/protocol/lendingpool/LendingPoolCollateralManager.sol b/contracts/protocol/lendingpool/LendingPoolCollateralManager.sol index e658708c..f6e5b0a1 100644 --- a/contracts/protocol/lendingpool/LendingPoolCollateralManager.sol +++ b/contracts/protocol/lendingpool/LendingPoolCollateralManager.sol @@ -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); } /**