{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/mixins/WithdrawFromEscrow.sol",
    "Parent Contracts": [
        "contracts/mixins/roles/AdminRole.sol",
        "contracts/mixins/OZ/AccessControlUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract WithdrawFromEscrow is AdminRole {\n  /**\n   * @notice Allows an admin to withdraw funds in the market escrow.\n   * @dev This only applies when funds were unable to send, such as due to an out of gas error.\n   * @param market The address of the contract to withdraw from.\n   */\n  function withdrawFromEscrow(ISendValueWithFallbackWithdraw market) external onlyAdmin {\n    market.withdraw();\n  }\n}"
}