diff --git a/contracts/payment/PullPayment.sol b/contracts/payment/PullPayment.sol index 9b4fcb405..00285dc4c 100644 --- a/contracts/payment/PullPayment.sol +++ b/contracts/payment/PullPayment.sol @@ -62,10 +62,6 @@ contract PullPayment { * @param amount The amount to transfer. */ function _asyncTransfer(address dest, uint256 amount) internal virtual { - // solhint-disable-previous-line no-unused-vars - - // TODO: remove the previous linter directive once - // https://github.com/protofire/solhint/issues/170 is fixed _escrow.deposit{ value: amount }(dest); } }