From 06244af218aface06756b8079db2325dea44641c Mon Sep 17 00:00:00 2001 From: poma Date: Tue, 23 Feb 2021 13:07:59 +0300 Subject: [PATCH] remove redundant struct --- contracts/TornadoTrees.sol | 7 ------- 1 file changed, 7 deletions(-) diff --git a/contracts/TornadoTrees.sol b/contracts/TornadoTrees.sol index 21bd7a3..5ff8c16 100644 --- a/contracts/TornadoTrees.sol +++ b/contracts/TornadoTrees.sol @@ -42,13 +42,6 @@ contract TornadoTrees { uint32 block; } - struct Batch { - bytes32 oldRoot; - bytes32 newRoot; - uint8 pathIndices; - TreeLeaf[CHUNK_SIZE] events; - } - modifier onlyTornadoProxy { require(msg.sender == tornadoProxy, "Not authorized"); _;