Created
June 25, 2017 01:41
-
-
Save brynbellomy/af51c4c44c3f0e462a2f59bf55e2e552 to your computer and use it in GitHub Desktop.
DavesWallet.sol
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 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