Update introduction-to-smart-contracts.rst

This commit is contained in:
janat08 2017-11-09 05:17:28 +06:00 committed by GitHub
parent dc154b4e56
commit dfac04d139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,8 +119,8 @@ that does not allow any arithmetic operations. It is suitable for
storing addresses of contracts or keypairs belonging to external
persons. The keyword ``public`` automatically generates a function that
allows you to access the current value of the state variable.
Without this keyword, other contracts have no way to access the variable.
The function will look something like this::
Without this keyword, other contracts have no way to access the variable,
but raw implementation would look something like this::
function minter() returns (address) { return minter; }