Skip to content

Instantly share code, notes, and snippets.

@roderik
Created January 1, 2019 14:45
Show Gist options
  • Save roderik/c75e95749df85961c105a2d725fd788e to your computer and use it in GitHub Desktop.
Save roderik/c75e95749df85961c105a2d725fd788e to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.15;
contract Migrations {
address public owner;
uint public last_completed_migration;
modifier restricted() {
require(msg.sender == owner);
_;
}
function Migrations() public {
owner = msg.sender;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
function upgrade(address newAddress) public restricted {
Migrations upgraded = Migrations(newAddress);
upgraded.setCompleted(last_completed_migration);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment