Commit e50e496f by Nicolás Venturo

Remove unnecessary linter ignore

parent c4be4d16
...@@ -62,10 +62,6 @@ contract PullPayment { ...@@ -62,10 +62,6 @@ contract PullPayment {
* @param amount The amount to transfer. * @param amount The amount to transfer.
*/ */
function _asyncTransfer(address dest, uint256 amount) internal virtual { 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); _escrow.deposit{ value: amount }(dest);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment