Commit 16429b15 by Dave Hoover Committed by Nicolás Venturo

Making visibility explicit for storage variables (#759)

* Making visibility explicit for storage variables

* Made BasicToken's variables internal.
parent ae2980b0
...@@ -12,9 +12,9 @@ import "../../math/SafeMath.sol"; ...@@ -12,9 +12,9 @@ import "../../math/SafeMath.sol";
contract BasicToken is ERC20Basic { contract BasicToken is ERC20Basic {
using SafeMath for uint256; using SafeMath for uint256;
mapping(address => uint256) balances; mapping(address => uint256) internal balances;
uint256 totalSupply_; uint256 internal totalSupply_;
/** /**
* @dev Total number of tokens in existence * @dev Total number of tokens in existence
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment