From 2b459fc5785f324a6c96350839ed4c202e194d13 Mon Sep 17 00:00:00 2001 From: emilio Date: Thu, 9 Jul 2020 16:55:09 +0200 Subject: [PATCH] Polished comments in UserLogic --- contracts/libraries/UserLogic.sol | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/contracts/libraries/UserLogic.sol b/contracts/libraries/UserLogic.sol index c0236b68..99e623a5 100644 --- a/contracts/libraries/UserLogic.sol +++ b/contracts/libraries/UserLogic.sol @@ -44,6 +44,12 @@ library UserLogic { _amount > IERC20(_reserve.aTokenAddress).balanceOf(_userAddress); } + /** + * @dev fetches the user current stable and variable debt balances + * @param _user the user + * @param _reserve the reserve object + * @return the stable and variable debt balance + **/ function getUserCurrentDebt(address _user,ReserveLogic.ReserveData storage _reserve) internal view @@ -55,7 +61,13 @@ library UserLogic { ); } - function getUserPrincipalDebt(address _user,ReserveLogic.ReserveData storage _reserve) + /** + * @dev fetches the user principal stable and variable debt balances + * @param _user the user + * @param _reserve the reserve object + * @return the stable and variable debt balance + **/ + function getUserPrincipalDebt(address _user,ReserveLogic.ReserveData storage _reserve) internal view returns (uint256, uint256)