mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 16:45:20 +00:00
5 lines
156 B
Solidity
5 lines
156 B
Solidity
|
pragma solidity ^0.4.17;
|
||
|
|
||
|
contract ProposalExecutor {
|
||
|
function executeProposal(address topic, uint value, bytes data) external returns (bool success);
|
||
|
}
|