corrections in mapping example (#2371)

fixed two small errors in the example mapping called balances
This commit is contained in:
pnf408 2016-09-27 07:41:22 -07:00 committed by ven
parent f6ada69ff9
commit acd1ac4611

View File

@ -230,9 +230,9 @@ mapping (string => uint) public balances;
balances["charles"] = 1;
console.log(balances["ada"]); // is 0, all non-set key values return zeroes
// 'public' allows following from another contract
contractName.balances("claude"); // returns 1
contractName.balances("charles"); // returns 1
// 'public' created a getter (but not setter) like the following:
function balances(address _account) returns (uint balance) {
function balances(string _account) returns (uint balance) {
return balances[_account];
}