diff --git a/contracts/src/management/ManagementContract.sol b/contracts/src/management/ManagementContract.sol index ff0cbc4570..2f297b99e3 100644 --- a/contracts/src/management/ManagementContract.sol +++ b/contracts/src/management/ManagementContract.sol @@ -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); }