Skip to content

Commit

Permalink
fix: Add named returns where missing (c4 #25)
Browse files Browse the repository at this point in the history
  • Loading branch information
deluca-mike committed Dec 12, 2021
1 parent e5f0d2e commit f3f3667
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/DebtLocker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied {
return oracleAmount > minRatioAmount ? oracleAmount : minRatioAmount;
}

function implementation() external view override returns (address) {
function implementation() external view override returns (address implementation_) {
return _implementation();
}

Expand Down Expand Up @@ -279,7 +279,7 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied {
return _pool;
}

function poolDelegate() external override view returns(address) {
function poolDelegate() external override view returns (address poolDelegate_) {
return _getPoolDelegate();
}

Expand All @@ -299,16 +299,16 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied {
/*** Internal View Functions ***/
/*******************************/

function _getGlobals() internal view returns (address) {
function _getGlobals() internal view returns (address globals_) {
return IPoolFactoryLike(IPoolLike(_pool).superFactory()).globals();
}

function _getPoolDelegate() internal view returns(address) {
function _getPoolDelegate() internal view returns(address poolDelegate_) {
return IPoolLike(_pool).poolDelegate();
}

function _isLiquidationActive() internal view returns (bool) {
return (_liquidator != address(0)) && (IERC20Like(IMapleLoanLike(_loan).collateralAsset()).balanceOf(_liquidator) > 0);
function _isLiquidationActive() internal view returns (bool isActive_) {
}

}

0 comments on commit f3f3667

Please sign in to comment.