Skip to content

Instantly share code, notes, and snippets.

@izqui
Created March 14, 2017 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izqui/5276268ca17e8ec32d9205d46a246728 to your computer and use it in GitHub Desktop.
Save izqui/5276268ca17e8ec32d9205d46a246728 to your computer and use it in GitHub Desktop.
contract BrokenContract is Fixeable {
function BrokenContract() {
broken = true;
creator = msg.sender;
}
function canExecuteArbitraryCode() returns (bool) {
return broken && msg.sender == creator;
}
bool public broken;
address public creator;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment