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