Commit 3d3f20f7 by Michal Stefanow Committed by Matt Condon

Removing obsolete comment - explicit check in place (#851)

parent 03a3302a
...@@ -32,7 +32,6 @@ contract BasicToken is ERC20Basic { ...@@ -32,7 +32,6 @@ contract BasicToken is ERC20Basic {
require(_to != address(0)); require(_to != address(0));
require(_value <= balances[msg.sender]); require(_value <= balances[msg.sender]);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value); balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value); balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value); Transfer(msg.sender, _to, _value);
......
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