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.

25 lines
561 B

//SPDX-License-Identifier: MIT
pragma solidity 0.7.5;
4 years ago
contract Migrations {
address public owner;
uint public lastCompletedMigration;
4 years ago
constructor() {
4 years ago
owner = msg.sender;
}
modifier restricted() {
if (msg.sender == owner) _;
}
function setCompleted(uint completed) public restricted {
lastCompletedMigration = completed;
4 years ago
}
function upgrade(address newAddress) public restricted {
Migrations upgraded = Migrations(newAddress);
upgraded.setCompleted(lastCompletedMigration);
4 years ago
}
}