Commit 77cc33fc by Radek Ostrowski Committed by Francisco Giordano

cleaned up unsued variable definition (#753)

parent 0b33d29e
...@@ -43,7 +43,7 @@ contract BasicToken is ERC20Basic { ...@@ -43,7 +43,7 @@ contract BasicToken is ERC20Basic {
* @param _owner The address to query the the balance of. * @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address. * @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]; return balances[_owner];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment