Skip to content

Instantly share code, notes, and snippets.

@dmichael
Created September 24, 2017 18:13
Show Gist options
  • Save dmichael/3e521d154fcb8b34bc1965a110c5a72b to your computer and use it in GitHub Desktop.
Save dmichael/3e521d154fcb8b34bc1965a110c5a72b to your computer and use it in GitHub Desktop.
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