1
0
tornado-governance/diffs/TornadoStakingRewards.diff

24 lines
628 B
Diff
Raw Permalink Normal View History

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;