diff --git a/contracts/DebtLocker.sol b/contracts/DebtLocker.sol index 10fd6fe..297c653 100644 --- a/contracts/DebtLocker.sol +++ b/contracts/DebtLocker.sol @@ -267,10 +267,6 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied { return _implementation(); } - function investorFee() external view override returns (uint256 investorFee_) { - return IMapleGlobalsLike(_getGlobals()).investorFee(); - } - function liquidator() external view override returns (address liquidator_) { return _liquidator; } @@ -279,10 +275,6 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied { return _loan; } - function mapleTreasury() external view override returns (address mapleTreasury_) { - return IMapleGlobalsLike(_getGlobals()).mapleTreasury(); - } - function minRatio() external view override returns (uint256 minRatio_) { return _minRatio; } @@ -303,10 +295,6 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied { return _repossessed; } - function treasuryFee() external view override returns (uint256 treasuryFee_) { - return IMapleGlobalsLike(_getGlobals()).treasuryFee(); - } - /*******************************/ /*** Internal View Functions ***/ /*******************************/ diff --git a/contracts/interfaces/IDebtLocker.sol b/contracts/interfaces/IDebtLocker.sol index a6411d1..f41d745 100644 --- a/contracts/interfaces/IDebtLocker.sol +++ b/contracts/interfaces/IDebtLocker.sol @@ -62,16 +62,6 @@ interface IDebtLocker is IMapleProxied { */ function claim() external returns (uint256[7] memory details_); - /** - * @dev Returns the annualized establishment fee that will go to the PoolDelegate. - */ - function investorFee() external view returns (uint256 investorFee_); - - /** - * @dev Returns the address of the Maple Treasury. - */ - function mapleTreasury() external view returns (address mapleTreasury_); - /** * @dev Allows the poolDelegate to pull some funds from liquidator contract * @param token_ The token address of the funds. @@ -80,11 +70,6 @@ interface IDebtLocker is IMapleProxied { */ function pullFundsFromLiquidator(address token_, address destination_, uint256 amount_) external; - /** - * @dev Returns the annualized establishment fee that will go to the Maple Treasury. - */ - function treasuryFee() external view returns (uint256 treasuryFee_); - /** * @dev Returns the address of the Pool Delegate that has control of the DebtLocker. */