c8507739d2
Signed-off-by: AlienTornadosaurusHex <>
29 lines
676 B
Diff
29 lines
676 B
Diff
11,20c11
|
|
<
|
|
< 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);
|
|
< }
|
|
---
|
|
> import { ITornadoGovernance } from "../interfaces/ITornadoGovernance.sol";
|
|
54d44
|
|
< // Minor code change here we won't resolve the registry by ENS
|
|
58c48
|
|
< address _relayerRegistry
|
|
---
|
|
> bytes32 _relayerRegistry
|
|
62c52
|
|
< relayerRegistry = _relayerRegistry;
|
|
---
|
|
> relayerRegistry = resolve(_relayerRegistry);
|
|
143c133
|
|
< }
|
|
---
|
|
> }
|
|
\ No newline at end of file
|