-
-
Save mvaz/cea80abb6b82ab9a7bebbb45d401e04a to your computer and use it in GitHub Desktop.
This file contains 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 MetaCoin { | |
mapping (address => uint) balances; | |
event Transfer(address _from,address _to, uint _amount); | |
function MetaCoin() { | |
balances[tx.origin] = 10000; | |
} | |
function sendCoin(address receiver, uint amount) returns(bool sufficient) { | |
if (balances[msg.sender] < amount) return false; | |
address myAddress = this; | |
balances[msg.sender] -= amount; | |
balances[receiver] += amount; | |
Transfer(myAddress,receiver,amount); | |
return true; | |
} | |
function getBalance(address addr) returns(uint) { | |
return balances[addr]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment