{
    "Function": "_requireDebtRepaymentGeCollWithdrawal",
    "File": "contracts/src/BorrowerOperations.sol",
    "Parent Contracts": [
        "contracts/src/Interfaces/IBorrowerOperations.sol",
        "contracts/src/Dependencies/AddRemoveManagers.sol",
        "contracts/src/Interfaces/IAddRemoveManagers.sol",
        "contracts/src/Dependencies/LiquityBase.sol",
        "contracts/src/Interfaces/ILiquityBase.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert RepaymentNotMatchingCollWithdrawal()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _requireDebtRepaymentGeCollWithdrawal(TroveChange memory _troveChange, uint256 _price) internal pure {\n        if ((_troveChange.debtDecrease * DECIMAL_PRECISION < _troveChange.collDecrease * _price)) {\n            revert RepaymentNotMatchingCollWithdrawal();\n        }\n    }"
}