Unverified Commit 269e096c by Nicolás Venturo Committed by GitHub

Remove unused return variables. (#1686)

parent edfce5a3
...@@ -20,11 +20,11 @@ contract ERC20Pausable is ERC20, Pausable { ...@@ -20,11 +20,11 @@ contract ERC20Pausable is ERC20, Pausable {
return super.approve(spender, value); return super.approve(spender, value);
} }
function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) { function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue); return super.increaseAllowance(spender, addedValue);
} }
function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) { function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue); return super.decreaseAllowance(spender, subtractedValue);
} }
} }
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