Skip to content

Instantly share code, notes, and snippets.

@brynbellomy
Created June 25, 2017 01:41
Show Gist options
  • Select an option

  • Save brynbellomy/af51c4c44c3f0e462a2f59bf55e2e552 to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/af51c4c44c3f0e462a2f59bf55e2e552 to your computer and use it in GitHub Desktop.
DavesWallet.sol
contract DavesWallet {
event GotSomeMoney(uint amount, uint balance);
function() payable {
GotSomeMoney(msg.value, this.balance);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment