diff options
-rw-r--r-- | packages/contracts/contracts/tokens/EtherToken.sol | 2 | ||||
-rw-r--r-- | packages/contracts/contracts/tokens/EtherToken_v2.sol | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/contracts/contracts/tokens/EtherToken.sol b/packages/contracts/contracts/tokens/EtherToken.sol index 900b95337..daef97d8f 100644 --- a/packages/contracts/contracts/tokens/EtherToken.sol +++ b/packages/contracts/contracts/tokens/EtherToken.sol @@ -18,7 +18,7 @@ pragma solidity ^0.4.11; -import ".//UnlimitedAllowanceToken.sol"; +import "./UnlimitedAllowanceToken.sol"; import "./../lib/SafeMath.sol"; contract EtherToken is UnlimitedAllowanceToken, SafeMath { diff --git a/packages/contracts/contracts/tokens/EtherToken_v2.sol b/packages/contracts/contracts/tokens/EtherToken_v2.sol index fe6b64266..d56d54432 100644 --- a/packages/contracts/contracts/tokens/EtherToken_v2.sol +++ b/packages/contracts/contracts/tokens/EtherToken_v2.sol @@ -47,12 +47,12 @@ contract EtherToken_v2 is ERC20Token, SafeMath_v2 { /// @dev Sells tokens in exchange for Ether, exchanging them 1:1. /// @param amount Number of tokens to sell. - function withdraw(uint amount) + function withdraw(uint _value) public { - balances[msg.sender] = safeSub(balances[msg.sender], amount); - totalSupply = safeSub(totalSupply, amount); - require(msg.sender.send(amount)); - Transfer(msg.sender, address(0), amount); + balances[msg.sender] = safeSub(balances[msg.sender], _value); + totalSupply = safeSub(totalSupply, _value); + require(msg.sender.send(_value)); + Transfer(msg.sender, address(0), _value); } } |