fix CVF-26
This commit is contained in:
parent
a04fe966f7
commit
8a82afba42
@ -267,22 +267,6 @@ contract TornadoTrees is Initializable {
|
|||||||
(success, ) = address(_tornadoTreesV1).staticcall{ gas: 2500 }(abi.encodeWithSignature(_type, index));
|
(success, ) = address(_tornadoTreesV1).staticcall{ gas: 2500 }(abi.encodeWithSignature(_type, index));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getRegisteredDeposits() external view returns (bytes32[] memory _deposits) {
|
|
||||||
uint256 count = depositsLength - lastProcessedDepositLeaf;
|
|
||||||
_deposits = new bytes32[](count);
|
|
||||||
for (uint256 i = 0; i < count; i++) {
|
|
||||||
_deposits[i] = deposits[lastProcessedDepositLeaf + i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function getRegisteredWithdrawals() external view returns (bytes32[] memory _withdrawals) {
|
|
||||||
uint256 count = withdrawalsLength - lastProcessedWithdrawalLeaf;
|
|
||||||
_withdrawals = new bytes32[](count);
|
|
||||||
for (uint256 i = 0; i < count; i++) {
|
|
||||||
_withdrawals[i] = withdrawals[lastProcessedWithdrawalLeaf + i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function setTornadoProxyContract(address _tornadoProxy) external onlyGovernance {
|
function setTornadoProxyContract(address _tornadoProxy) external onlyGovernance {
|
||||||
tornadoProxy = _tornadoProxy;
|
tornadoProxy = _tornadoProxy;
|
||||||
emit ProxyUpdated(_tornadoProxy);
|
emit ProxyUpdated(_tornadoProxy);
|
||||||
|
@ -97,4 +97,20 @@ contract TornadoTreesMock is TornadoTrees {
|
|||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getRegisteredDeposits() external view returns (bytes32[] memory _deposits) {
|
||||||
|
uint256 count = depositsLength - lastProcessedDepositLeaf;
|
||||||
|
_deposits = new bytes32[](count);
|
||||||
|
for (uint256 i = 0; i < count; i++) {
|
||||||
|
_deposits[i] = deposits[lastProcessedDepositLeaf + i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRegisteredWithdrawals() external view returns (bytes32[] memory _withdrawals) {
|
||||||
|
uint256 count = withdrawalsLength - lastProcessedWithdrawalLeaf;
|
||||||
|
_withdrawals = new bytes32[](count);
|
||||||
|
for (uint256 i = 0; i < count; i++) {
|
||||||
|
_withdrawals[i] = withdrawals[lastProcessedWithdrawalLeaf + i];
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user