Skip to content

Instantly share code, notes, and snippets.

@joeb000
Created September 14, 2017 22:57
Show Gist options
  • Save joeb000/f6327f4fea04a47f8eb51fdbeb1133d1 to your computer and use it in GitHub Desktop.
Save joeb000/f6327f4fea04a47f8eb51fdbeb1133d1 to your computer and use it in GitHub Desktop.
contract Hello {
mapping (address=>bool) hasBeenPaid;
function () payable {}
function sendMeMoney() {
if (!hasBeenPaid[msg.sender]){
if(msg.sender.send(.5 ether))
hasBeenPaid[msg.sender] = true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment