Explorar el Código

Remove unnecessary linter ignore

Nicolás Venturo hace 5 años
padre
commit
e50e496f5b
Se han modificado 1 ficheros con 0 adiciones y 4 borrados
  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);
     }
 }