From e50e496f5bcf2703420e47bf4fd1e6bfa6aa40fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Tue, 21 Apr 2020 15:04:04 -0300 Subject: [PATCH] Remove unnecessary linter ignore --- contracts/payment/PullPayment.sol | 4 ---- 1 file changed, 4 deletions(-) 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); } }