Skip to content

Commit 996850d

Browse files
committed
removed onlyOwner- not needed
1 parent a3365b3 commit 996850d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MigrationRelease.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ contract MigrationRelease is Ownable {
5050
uint _amount,
5151
uint _id,
5252
bytes32[] calldata _merkleProof
53-
) external onlyOwner {
53+
) external {
5454
bytes32 leaf = keccak256(abi.encodePacked(_recipient, _amount,_id));
5555
require(
5656
verifyAddress(_recipient, _amount, _id, _merkleProof) &&
@@ -70,7 +70,7 @@ contract MigrationRelease is Ownable {
7070
address _recipient,
7171
uint _amount,uint _id,
7272
bytes32[] calldata _merkleProof
73-
) external onlyOwner {
73+
) external {
7474
bytes32 leaf = keccak256(abi.encodePacked(_recipient, _amount,_id));
7575
require(
7676
instantClaimTime[leaf] + VESTING_PERIOD < block.timestamp &&

0 commit comments

Comments
 (0)