From 9befe255408037d47bea0182ee748e63e2ae284e Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 19 Aug 2021 11:15:46 +0300 Subject: [PATCH] tidy --- contracts/TornadoPool.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/contracts/TornadoPool.sol b/contracts/TornadoPool.sol index 31f2c17..cefb61d 100644 --- a/contracts/TornadoPool.sol +++ b/contracts/TornadoPool.sol @@ -101,14 +101,12 @@ contract TornadoPool is Initializable { } else if (_extData.extAmount < 0) { require(msg.value == 0, "Sent ETH amount should be 0 for withdrawal"); require(_extData.recipient != address(0), "Can't withdraw to zero address"); - // _extData.recipient.transfer(uint256(-extAmount)); _transfer(_extData.recipient, uint256(-_extData.extAmount)); } else { require(msg.value == 0, "Sent ETH amount should be 0 for transaction"); } if (_extData.fee > 0) { - // _extData.relayer.transfer(_args.fee); _transfer(_extData.relayer, _extData.fee); }