diff --git a/contracts/SortitionPool.sol b/contracts/SortitionPool.sol index b6dee8d..5b04fff 100644 --- a/contracts/SortitionPool.sol +++ b/contracts/SortitionPool.sol @@ -114,7 +114,9 @@ contract SortitionPool is function insertOperator(address operator, uint256 authorizedStake) public onlyOwner - onlyUnlocked + // TODO: Disabled temporarily for a test environment. This should never be disabled + // in normal circumstances. + // onlyUnlocked { uint256 weight = getWeight(authorizedStake); require(weight > 0, "Operator not eligible");