{
    "Function": "emergencyWithdraw",
    "File": "contracts/mock/MockPickleMasterChef.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function emergencyWithdraw(uint _pid) external {\n        UserInfo storage user = userInfo[_pid][msg.sender];\n        lpToken.transfer(msg.sender, user.amount);\n        user.amount = 0;\n        user.rewardDebt = 0;\n    }"
}