Browse Source

Remove unused return variables. (#1686)

Nicolás Venturo 6 years ago
parent
commit
269e096c5a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contracts/token/ERC20/ERC20Pausable.sol

+ 2 - 2
contracts/token/ERC20/ERC20Pausable.sol

@@ -20,11 +20,11 @@ contract ERC20Pausable is ERC20, Pausable {
         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);
     }
 
-    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);
     }
 }