diff --git a/contracts/token/StandardToken.sol b/contracts/token/StandardToken.sol index 4a30a6bc5..42a5d561d 100644 --- a/contracts/token/StandardToken.sol +++ b/contracts/token/StandardToken.sol @@ -29,8 +29,8 @@ contract StandardToken is ERC20, BasicToken { // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); - balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); + balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true;