From 77cc33fc5c4d0b0d03aec1d8bba77edc9a7196ae Mon Sep 17 00:00:00 2001 From: Radek Ostrowski Date: Sat, 21 Apr 2018 05:01:05 +1000 Subject: [PATCH] cleaned up unsued variable definition (#753) --- contracts/token/ERC20/BasicToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC20/BasicToken.sol b/contracts/token/ERC20/BasicToken.sol index bdcf58c9d..905128fa2 100644 --- a/contracts/token/ERC20/BasicToken.sol +++ b/contracts/token/ERC20/BasicToken.sol @@ -43,7 +43,7 @@ contract BasicToken is ERC20Basic { * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ - function balanceOf(address _owner) public view returns (uint256 balance) { + function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; }