Skip to content

Commit

Permalink
cleaned up unsued variable definition (OpenZeppelin#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
radek1st authored and frangio committed Apr 20, 2018
1 parent 0b33d29 commit 77cc33f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/ERC20/BasicToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}

Expand Down

0 comments on commit 77cc33f

Please sign in to comment.