Created
March 14, 2017 11:59
-
-
Save izqui/5276268ca17e8ec32d9205d46a246728 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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