{
    "Function": "_checkBelowCriticalThreshold",
    "File": "contracts/src/Dependencies/LiquityBase.sol",
    "Parent Contracts": [
        "contracts/src/Interfaces/ILiquityBase.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_getTCR"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _checkBelowCriticalThreshold(uint256 _price, uint256 _CCR) internal view returns (bool) {\n        uint256 TCR = _getTCR(_price);\n\n        return TCR < _CCR;\n    }"
}