mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 16:45:20 +00:00
21 lines
420 B
Solidity
21 lines
420 B
Solidity
|
pragma solidity ^0.4.17;
|
||
|
|
||
|
import "./DemocracyStorage.sol";
|
||
|
|
||
|
/**
|
||
|
* @title DemocracyInterface
|
||
|
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
|
||
|
*/
|
||
|
contract DemocracyInterface is DemocracyStorage {
|
||
|
|
||
|
function executeProposal(
|
||
|
uint256 _proposalId,
|
||
|
address _destination,
|
||
|
uint _value,
|
||
|
bytes _data
|
||
|
)
|
||
|
external
|
||
|
returns(bool success);
|
||
|
|
||
|
|
||
|
}
|