Skip to content

Instantly share code, notes, and snippets.

@mattkanwisher
Created February 7, 2018 12:12
Show Gist options
  • Save mattkanwisher/e420ec5ecfcdc3cad8a8eb2745ac184a to your computer and use it in GitHub Desktop.
Save mattkanwisher/e420ec5ecfcdc3cad8a8eb2745ac184a to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.2;
contract Migrations {
address public owner;
uint public last_completed_migration;
modifier restricted() {
if (msg.sender == owner) _;
}
function Migrations() public {
owner = msg.sender;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
function upgrade(address new_address) public restricted {
Migrations upgraded = Migrations(new_address);
upgraded.setCompleted(last_completed_migration);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment