Skip to content

Commit

Permalink
CI: 676a5c7
Browse files Browse the repository at this point in the history
  • Loading branch information
Docs Syncer committed Jun 11, 2024
1 parent 0644418 commit 692796b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/reference/contracts/access/MerkleWhitelisted.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Note: the branch nodes are sorted numerically.
### onlyWhitelisted

```solidity
modifier onlyWhitelisted(bytes memory data_, bytes32[] calldata merkleProof_)
modifier onlyWhitelisted(bytes memory data_, bytes32[] memory merkleProof_)
```


### onlyWhitelistedUser

```solidity
modifier onlyWhitelistedUser(address user_, bytes32[] calldata merkleProof_)
modifier onlyWhitelistedUser(address user_, bytes32[] memory merkleProof_)
```


Expand All @@ -43,7 +43,7 @@ modifier onlyWhitelistedUser(address user_, bytes32[] calldata merkleProof_)
```solidity
function isWhitelisted(
bytes32 leaf_,
bytes32[] calldata merkleProof_
bytes32[] memory merkleProof_
) public view returns (bool)
```

Expand All @@ -69,7 +69,7 @@ Return values:
```solidity
function isWhitelistedUser(
address user_,
bytes32[] calldata merkleProof_
bytes32[] memory merkleProof_
) public view returns (bool)
```

Expand Down

0 comments on commit 692796b

Please sign in to comment.