{
    "Function": "withdrawAll",
    "File": "contracts/Booster.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "withdraw"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdrawAll(uint256 _pid) public returns (bool) {\n        address token = poolInfo[_pid].token;\n        uint256 userBal = IERC20(token).balanceOf(msg.sender);\n        withdraw(_pid, userBal);\n        return true;\n    }"
}