Skip to content

Commit

Permalink
Don't restrict bond-operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Sep 23, 2023
1 parent 281b143 commit 01c22bd
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 @@ -95,7 +95,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 01c22bd

Please sign in to comment.