Skip to content

Commit

Permalink
events-comments: fix units
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed Dec 4, 2021
1 parent 2480508 commit 498f181
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions contracts/aave/PositionsManagerForAave.sol
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ contract PositionsManagerForAave is ReentrancyGuard {
/** @dev Emitted when the position of a supplier is updated.
* @param _account The address of the supplier.
* @param _poolTokenAddress The address of the market.
* @param _amountAddedOnPool The amount of underlying asset added on pool.
* @param _amountAddedInP2P The amount of underlying asset added in P2P.
* @param _amountRemovedFromPool The amount of underlying asset removed from the pool.
* @param _amountRemovedFromP2P The amount of underlying asset remove from P2P.
* @param _amountAddedOnPool The amount added on pool (in underlying).
* @param _amountAddedInP2P The amount added in P2P (in underlying).
* @param _amountRemovedFromPool The amount removed from the pool (in underlying).
* @param _amountRemovedFromP2P The amount removed from P2P (in underlying).
* @param _p2pExchangeRate The P2P exchange rate at the moment.
* @param _normalizedIncome The normalized income at the moment.
*/
Expand All @@ -177,10 +177,10 @@ contract PositionsManagerForAave is ReentrancyGuard {
/** @dev Emitted when the position of a borrower is updated.
* @param _account The address of the borrower.
* @param _poolTokenAddress The address of the market.
* @param _amountAddedOnPool The amount of underlying asset added on pool.
* @param _amountAddedInP2P The amount of underlying asset added in P2P.
* @param _amountRemovedFromPool The amount of underlying asset removed from the pool.
* @param _amountRemovedFromP2P The amount of underlying asset remove from P2P.
* @param _amountAddedOnPool The amount added on pool (in underlying).
* @param _amountAddedInP2P The amount added in P2P (in underlying).
* @param _amountRemovedFromPool The amount removed from the pool (in underlying).
* @param _amountRemovedFromP2P The amount removed from P2P (in underlying).
* @param _p2pExchangeRate The P2P exchange rate at the moment.
* @param _normalizedVariableDebt The normalized variable debt at the moment.
*/
Expand Down
16 changes: 8 additions & 8 deletions contracts/compound/PositionsManagerForCompound.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ contract PositionsManagerForCompound is ReentrancyGuard {
/** @dev Emitted when the position of a supplier is updated.
* @param _account The address of the supplier.
* @param _poolTokenAddress The address of the market.
* @param _amountAddedOnPool The amount of underlying asset added on pool.
* @param _amountAddedInP2P The amount of underlying asset added in P2P.
* @param _amountRemovedFromPool The amount of underlying asset removed from the pool.
* @param _amountRemovedFromP2P The amount of underlying asset remove from P2P.
* @param _amountAddedOnPool The amount added on pool (in underlying).
* @param _amountAddedInP2P The amount added in P2P (in underlying).
* @param _amountRemovedFromPool The amount removed from the pool (in underlying).
* @param _amountRemovedFromP2P The amount removed from P2P (in underlying).
* @param _p2pExchangeRate The P2P exchange rate at the moment.
* @param _poolTokenExchangeRate The poolToken exchange rate at the moment.
*/
Expand All @@ -144,10 +144,10 @@ contract PositionsManagerForCompound is ReentrancyGuard {
/** @dev Emitted when the position of a borrower is updated.
* @param _account The address of the borrower.
* @param _poolTokenAddress The address of the market.
* @param _amountAddedOnPool The amount of underlying asset added on pool.
* @param _amountAddedInP2P The amount of underlying asset added in P2P.
* @param _amountRemovedFromPool The amount of underlying asset removed from the pool.
* @param _amountRemovedFromP2P The amount of underlying asset remove from P2P.
* @param _amountAddedOnPool The amount added on pool (in underlying).
* @param _amountAddedInP2P The amount added in P2P (in underlying).
* @param _amountRemovedFromPool The amount removed from the pool (in underlying).
* @param _amountRemovedFromP2P The amount removed from P2P (in underlying).
* @param _p2pExchangeRate The P2P exchange rate at the moment.
* @param _borrowIndex The borrow index at the moment.
*/
Expand Down

0 comments on commit 498f181

Please sign in to comment.