You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
410 B
Solidity
20 lines
410 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract Migrations {
|
|
address public owner = msg.sender;
|
|
uint public last_completed_migration;
|
|
|
|
modifier restricted() {
|
|
require(
|
|
msg.sender == owner,
|
|
"This function is restricted to the contract's owner"
|
|
);
|
|
_;
|
|
}
|
|
|
|
function setCompleted(uint completed) public restricted {
|
|
last_completed_migration = completed;
|
|
}
|
|
}
|