From 8b29f6f18de0af62cb1737a3b6d4cc188b764b97 Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Thu, 7 Dec 2017 10:22:08 -0800 Subject: Fix typo, change variable name to be consistent --- packages/contracts/contracts/tokens/EtherToken.sol | 2 +- 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); } } -- cgit v1.2.3