Removing obsolete comment - explicit check in place (#851)
This commit is contained in:
committed by
Matt Condon
parent
03a3302abd
commit
3d3f20f7e3
@ -32,7 +32,6 @@ contract BasicToken is ERC20Basic {
|
||||
require(_to != address(0));
|
||||
require(_value <= balances[msg.sender]);
|
||||
|
||||
// SafeMath.sub will throw if there is not enough balance.
|
||||
balances[msg.sender] = balances[msg.sender].sub(_value);
|
||||
balances[_to] = balances[_to].add(_value);
|
||||
Transfer(msg.sender, _to, _value);
|
||||
|
||||
Reference in New Issue
Block a user