Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion contracts/SortitionPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down