diff --git a/contracts/modules/EToken.sol b/contracts/modules/EToken.sol index 8ab8d85a..ccae5a57 100644 --- a/contracts/modules/EToken.sol +++ b/contracts/modules/EToken.sol @@ -382,6 +382,8 @@ contract EToken is BaseLogic { emit Withdraw(assetCache.underlying, account, amount); emitViaProxy_Transfer(proxyAddr, account, address(0), amount); + checkLiquidity(account); + logAssetStatus(assetCache); } }