{
    "Function": "setMinActiveBalance",
    "File": "contracts/managers/SherlockProtocolManager.sol",
    "Parent Contracts": [
        "contracts/managers/Manager.sol",
        "node_modules/@openzeppelin/contracts/security/Pausable.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/interfaces/managers/ISherlockProtocolManager.sol",
        "contracts/interfaces/managers/IManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert InvalidConditions()",
        "onlyOwner",
        "revert InvalidArgument()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setMinActiveBalance(uint256 _minActiveBalance) external override onlyOwner {\n    // New value cannot be the same as current value\n    if (minActiveBalance == _minActiveBalance) revert InvalidArgument();\n    // Can't set a value that is too high to be reasonable\n    if (_minActiveBalance >= MIN_BALANCE_SANITY_CEILING) revert InvalidConditions();\n\n    emit MinBalance(minActiveBalance, _minActiveBalance);\n    minActiveBalance = _minActiveBalance;\n  }"
}