mirror of
https://github.com/tornadocash/tornado-governance
synced 2024-02-02 14:53:55 +01:00
13 lines
280 B
Solidity
13 lines
280 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.6.0;
|
|
|
|
interface IGovernance {
|
|
function setExecutionDelay(uint256 delay) external;
|
|
}
|
|
|
|
contract ProposalStateChangeGovernance {
|
|
function executeProposal() public {
|
|
IGovernance(address(this)).setExecutionDelay(3 days);
|
|
}
|
|
}
|