{
    "Function": "withdrawBorrowETH",
    "File": "contracts/LendingPair.sol",
    "Parent Contracts": [
        "contracts/TransferHelper.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_withdrawBorrow",
        "_checkMinReserve",
        "accrueAccount",
        "_wethWithdrawTo"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdrawBorrowETH(uint _amount) external {\n    accrueAccount(msg.sender);\n\n    _withdrawBorrow(address(WETH), _amount);\n    _wethWithdrawTo(msg.sender, _amount);\n    _checkMinReserve(address(WETH));\n  }"
}