Skip to content

Commit

Permalink
Removing obsolete comment - explicit check in place (OpenZeppelin#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefek99 authored and frangio committed Apr 5, 2018
1 parent 78aff09 commit 4b3ddaf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracts/token/ERC20/BasicToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4b3ddaf

Please sign in to comment.