mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
346 B
19 lines
346 B
5 years ago
|
pragma solidity >=0.4.25 <0.7.0;
|
||
|
|
||
|
contract Migrations {
|
||
|
address public owner;
|
||
|
uint public last_completed_migration;
|
||
|
|
||
|
modifier restricted() {
|
||
|
if (msg.sender == owner) _;
|
||
|
}
|
||
|
|
||
|
constructor() public {
|
||
|
owner = msg.sender;
|
||
|
}
|
||
|
|
||
|
function setCompleted(uint completed) public restricted {
|
||
|
last_completed_migration = completed;
|
||
|
}
|
||
|
}
|