75cf27d7d4
Signed-off-by: AlienTornadosaurusHex <>
24 lines
628 B
Diff
24 lines
628 B
Diff
11c11,20
|
|
< import { ITornadoGovernance } from "../interfaces/ITornadoGovernance.sol";
|
|
---
|
|
>
|
|
> 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
|
|
---
|
|
> address _relayerRegistry
|
|
52c62
|
|
< relayerRegistry = resolve(_relayerRegistry);
|
|
---
|
|
> relayerRegistry = _relayerRegistry;
|