Skip to content

Commit

Permalink
try without onlyOwner
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Feb 12, 2024
1 parent 9585387 commit 01f16c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/management/ManagementContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ contract ManagementContract is Initializable, OwnableUpgradeable {
}

// Function to set an important contract's address, only callable by owner
function SetImportantContractAddress(string memory key, address newAddress) public onlyOwner {
function SetImportantContractAddress(string memory key, address newAddress) public {
if (importantContractAddresses[key] == address(0)) {
importantContractKeys.push(key);
}
Expand Down

0 comments on commit 01f16c9

Please sign in to comment.