1
0
mirror of https://github.com/fluencelabs/smartcontracts synced 2025-05-03 15:12:13 +00:00

24 lines
493 B
Solidity
Raw Permalink Normal View History

2017-08-07 17:13:21 +03:00
pragma solidity ^0.4.4;
contract Migrations {
address public owner;
uint public last_completed_migration;
modifier restricted() {
if (msg.sender == owner) _;
}
function Migrations() {
owner = msg.sender;
}
function setCompleted(uint completed) restricted {
last_completed_migration = completed;
}
function upgrade(address new_address) restricted {
Migrations upgraded = Migrations(new_address);
upgraded.setCompleted(last_completed_migration);
}
}