{
    "Function": "setHarvester",
    "File": "contracts/v3/Harvester.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IHarvester.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyStrategist"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setHarvester(\n        address _harvester,\n        bool _status\n    )\n        external\n        onlyStrategist\n    {\n        isHarvester[_harvester] = _status;\n        emit HarvesterSet(_harvester, _status);\n    }"
}