Skip to content

Commit

Permalink
🩹 Fix func visibility in Lens
Browse files Browse the repository at this point in the history
  • Loading branch information
MerlinEgalite committed Oct 13, 2022
1 parent ff82027 commit e9379eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/aave-v2/lens/UsersLens.sol
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ abstract contract UsersLens is IndexesLens {
/// @return balanceOnPool The balance on pool of the user (in underlying).
/// @return totalBalance The total balance of the user (in underlying).
function _getCurrentSupplyBalanceInOf(address _poolToken, address _user)
public
internal
view
returns (
address underlyingToken,
Expand Down Expand Up @@ -391,7 +391,7 @@ abstract contract UsersLens is IndexesLens {
/// @return balanceOnPool The balance on pool of the user (in underlying).
/// @return totalBalance The total balance of the user (in underlying).
function _getCurrentBorrowBalanceInOf(address _poolToken, address _user)
public
internal
view
returns (
address underlyingToken,
Expand Down

0 comments on commit e9379eb

Please sign in to comment.