{
    "Function": "withdrawInternal",
    "File": "src/Market.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IEscrow"
    ],
    "Internal Calls": [
        "require(bool,string)",
        "getWithdrawalLimitInternal",
        "getEscrow"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdrawInternal(address from, address to, uint amount) internal {\n        uint limit = getWithdrawalLimitInternal(from);\n        require(limit >= amount, \"Insufficient withdrawal limit\");\n        IEscrow escrow = getEscrow(from);\n        escrow.pay(to, amount);\n        emit Withdraw(from, to, amount);\n    }"
}