{
    "Function": "setFees",
    "File": "contracts/VeAssetDepositor.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setFees(uint256 _lockIncentive) external {\n        require(msg.sender == feeManager, \"!auth\");\n\n        if (_lockIncentive >= 0 && _lockIncentive <= 30) {\n            lockIncentive = _lockIncentive;\n            emit FeesUpdated(_lockIncentive);\n        }\n    }"
}