Created
September 24, 2017 18:13
-
-
Save dmichael/3e521d154fcb8b34bc1965a110c5a72b 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
pragma solidity ^0.4.11; | |
// This contract keeps all Ether sent to it with no way to get it back. | |
contract Pain { | |
function() payable {} | |
} | |
// So does this one | |
contract MorePain { | |
function payme() payable {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment