2023-05-22 21:35:05 +03:00
|
|
|
11c11,20
|
|
|
|
< import { ITornadoGovernance } from "../interfaces/ITornadoGovernance.sol";
|
2023-05-22 21:23:39 +03:00
|
|
|
---
|
2023-05-22 21:35:05 +03:00
|
|
|
>
|
|
|
|
> interface ITornadoVault {
|
|
|
|
> function withdrawTorn(address recipient, uint256 amount) external;
|
|
|
|
> }
|
|
|
|
>
|
|
|
|
> interface ITornadoGovernance {
|
|
|
|
> function lockedBalance(address account) external view returns (uint256);
|
|
|
|
>
|
|
|
|
> function userVault() external view returns (ITornadoVault);
|
|
|
|
> }
|
|
|
|
44a54
|
|
|
|
> // Minor code change here we won't resolve the registry by ENS
|
|
|
|
48c58
|
|
|
|
< bytes32 _relayerRegistry
|
2023-05-22 21:23:39 +03:00
|
|
|
---
|
2023-05-22 21:35:05 +03:00
|
|
|
> address _relayerRegistry
|
|
|
|
52c62
|
|
|
|
< relayerRegistry = resolve(_relayerRegistry);
|
2023-05-22 21:23:39 +03:00
|
|
|
---
|
2023-05-22 21:35:05 +03:00
|
|
|
> relayerRegistry = _relayerRegistry;
|