Skip to content

Commit

Permalink
rename unPause() to unpause()
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Dec 7, 2022
1 parent 326b7cc commit 74a3ee9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion contracts/SoulLinker.sol
Expand Up @@ -146,7 +146,7 @@ contract SoulLinker is PaymentGateway, EIP712, Pausable {

/// @notice Unpauses the smart contract
/// @dev The caller must have the owner to call this function
function unPause() public onlyOwner {
function unpause() public onlyOwner {
_unpause();
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/SoulStore.sol
Expand Up @@ -102,7 +102,7 @@ contract SoulStore is PaymentGateway, Pausable {

/// @notice Unpauses the smart contract
/// @dev The caller must have the owner to call this function
function unPause() public onlyOwner {
function unpause() public onlyOwner {
_unpause();
}

Expand Down
4 changes: 2 additions & 2 deletions docs/SoulLinker.md
Expand Up @@ -662,10 +662,10 @@ function transferOwnership(address newOwner) external nonpayable
|---|---|---|
| newOwner | address | undefined |

### unPause
### unpause

```solidity
function unPause() external nonpayable
function unpause() external nonpayable
```

Unpauses the smart contract
Expand Down
4 changes: 2 additions & 2 deletions docs/SoulStore.md
Expand Up @@ -495,10 +495,10 @@ function transferOwnership(address newOwner) external nonpayable
|---|---|---|
| newOwner | address | undefined |

### unPause
### unpause

```solidity
function unPause() external nonpayable
function unpause() external nonpayable
```

Unpauses the smart contract
Expand Down

0 comments on commit 74a3ee9

Please sign in to comment.