diff --git a/contracts/DebtLocker.sol b/contracts/DebtLocker.sol index 068bbb0..ac2c236 100644 --- a/contracts/DebtLocker.sol +++ b/contracts/DebtLocker.sol @@ -75,7 +75,6 @@ contract DebtLocker is IDebtLocker, DebtLockerStorage, MapleProxied { return _repossessed ? _handleClaimOfRepossessed() : _handleClaim(); } - // TODO: Discuss pros/cons of pause on this function function pullFundsFromLiquidator(address token_, address destination_, uint256 amount_) external override { require(msg.sender == _getPoolDelegate(), "DL:SA:NOT_PD");