ソースを参照

Remove unnecessary linter ignore

Nicolás Venturo 5 年 前
コミット
e50e496f5b
1 ファイル変更0 行追加4 行削除
  1. 0 4
      contracts/payment/PullPayment.sol

+ 0 - 4
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);
     }
 }