Function: _setMinOperatorStake(uint96 stake)
Sets the minimum operator stake for the AVS.
Inputs
stake
Validation: None.
Impact: The minimum operator stake for the AVS.
Branches and code coverage (including function calls)
Intended branches
Set the minimum operator stake for the AVS.
Negative behavior
Should not allow setting the min operator stake to a value smaller than what the current operators have staked. Currently not enforced.
Alternatively, should remove all operators that do not meet the new min operator stake. Currently not enforced.
Should not be callable by anyone (ensured through the
onlyOwner
modifier in the function definition).