{
    "Function": "setInsurancePoolFee",
    "File": "contracts/v3/Manager.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "notHalted",
        "onlyGovernance"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setInsurancePoolFee(\n        uint256 _insurancePoolFee\n    )\n        external\n        notHalted\n        onlyGovernance\n    {\n        require(_insurancePoolFee <= 2000, \"_insurancePoolFee over 20%\");\n        insurancePoolFee = _insurancePoolFee;\n    }"
}