{
    "Function": "_checkHealth",
    "File": "contracts/lybra/pools/base/LybraPeUSDVaultBase.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "Iconfigurator"
    ],
    "Internal Calls": [
        "revert(string)",
        "getBorrowedOf"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _checkHealth(address user, uint256 price) internal view {\n        if (((depositedAsset[user] * price * 100) / getBorrowedOf(user)) < configurator.getSafeCollateralRatio(address(this))) \n            revert(\"collateralRatio is Below safeCollateralRatio\");\n    }"
}