mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
linter fixes
This commit is contained in:
parent
bd4500d7ff
commit
1f1964417a
@ -5,11 +5,7 @@ import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
||||
import "@openzeppelin/contracts/access/Ownable.sol";
|
||||
|
||||
contract WETH is ERC20 {
|
||||
|
||||
constructor(
|
||||
string memory name,
|
||||
string memory ticker
|
||||
) ERC20(name, ticker) {}
|
||||
constructor(string memory name, string memory ticker) ERC20(name, ticker) {}
|
||||
|
||||
function deposit() external payable {
|
||||
_mint(msg.sender, msg.value);
|
||||
|
@ -276,7 +276,11 @@ contract TornadoPool is MerkleTreeWithHistory, IERC20Receiver, ReentrancyGuard,
|
||||
if (_extData.extAmount < 0) {
|
||||
require(_extData.recipient != address(0), "Can't withdraw to zero address");
|
||||
if (_extData.isL1Withdrawal) {
|
||||
token.transferAndCall(omniBridge, uint256(-_extData.extAmount), abi.encodePacked(l1Unwrapper, _extData.recipient, _extData.l1Fee));
|
||||
token.transferAndCall(
|
||||
omniBridge,
|
||||
uint256(-_extData.extAmount),
|
||||
abi.encodePacked(l1Unwrapper, _extData.recipient, _extData.l1Fee)
|
||||
);
|
||||
} else {
|
||||
token.transfer(_extData.recipient, uint256(-_extData.extAmount));
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ contract L1Unwrapper is WETHOmnibridgeRouter {
|
||||
address _token,
|
||||
uint256 _value,
|
||||
bytes memory _data
|
||||
) override external {
|
||||
) external override {
|
||||
require(_token == address(WETH));
|
||||
require(msg.sender == address(bridge));
|
||||
require(_data.length == 52);
|
||||
|
@ -26,8 +26,7 @@ library BytesHelper {
|
||||
* @param _start start index of slice
|
||||
* @return x uint included in the 32 length slice of the bytes array in parameter.
|
||||
*/
|
||||
function sliceToUint(bytes memory _bytes, uint _start) internal pure returns (uint x)
|
||||
{
|
||||
function sliceToUint(bytes memory _bytes, uint256 _start) internal pure returns (uint256 x) {
|
||||
require(_bytes.length >= _start + 32, "slicing out of range");
|
||||
assembly {
|
||||
x := mload(add(_bytes, add(0x20, _start)))
|
||||
|
12
src/index.js
12
src/index.js
@ -16,7 +16,17 @@ async function buildMerkleTree({ tornadoPool }) {
|
||||
return new MerkleTree(MERKLE_TREE_HEIGHT, leaves, { hashFunction: poseidonHash2 })
|
||||
}
|
||||
|
||||
async function getProof({ inputs, outputs, tree, extAmount, fee, recipient, relayer, isL1Withdrawal, l1Fee }) {
|
||||
async function getProof({
|
||||
inputs,
|
||||
outputs,
|
||||
tree,
|
||||
extAmount,
|
||||
fee,
|
||||
recipient,
|
||||
relayer,
|
||||
isL1Withdrawal,
|
||||
l1Fee,
|
||||
}) {
|
||||
inputs = shuffle(inputs)
|
||||
outputs = shuffle(outputs)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user