Skip to content

Instantly share code, notes, and snippets.

@noot
Created May 23, 2018 15:04
Show Gist options
  • Save noot/908c87342207669e9cd786eb1d710eac to your computer and use it in GitHub Desktop.
Save noot/908c87342207669e9cd786eb1d710eac to your computer and use it in GitHub Desktop.
contract OldContract {
// _sig = bytes4(keccak256("callMe()"));
function upgradeMe(bytes4 _sig) {
newContract.call(_sig);
}
}
contract NewContract {
function callMe() {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment