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