1
0
tornado-governance/contracts/v1/Mocks/ProposalStateChangeGovernance.sol

14 lines
282 B
Solidity
Raw Normal View History

2023-05-21 20:02:21 +03:00
// 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);
}
}