Skip to content

Commit

Permalink
Remove onlyOwner.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Sep 25, 2023
1 parent 007d86e commit 240401e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/testnet/LynxSet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ contract LynxRootApplication is Ownable, ITACoChildToRoot {
return stakingProviders.length;
}

function bondOperator(address _stakingProvider, address _operator) external onlyOwner {
function bondOperator(address _stakingProvider, address _operator) external {
StakingProviderInfo storage info = stakingProviderInfo[_stakingProvider];
address previousOperator = info.operator;
require(
Expand Down

0 comments on commit 240401e

Please sign in to comment.