mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
29 lines
614 B
Solidity
29 lines
614 B
Solidity
pragma solidity ^0.6.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
contract Ownable {
|
|
address private _owner;
|
|
|
|
modifier onlyOwner() {
|
|
require(msg.sender == _owner, "Ownable: caller is not the owner");
|
|
_;
|
|
}
|
|
|
|
function renounceOwnership() public onlyOwner { }
|
|
}
|
|
|
|
library VoteTiming {
|
|
function init(uint phaseLength) internal pure {
|
|
require(true, "");
|
|
}
|
|
}
|
|
|
|
contract Voting is Ownable {
|
|
constructor() public {
|
|
VoteTiming.init(1);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 5667: (324-340): Unused function parameter. Remove or comment out the variable name to silence this warning.
|