{
    "Function": "_accrueAccountDebt",
    "File": "contracts/LendingPair.sol",
    "Parent Contracts": [
        "contracts/TransferHelper.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_mintDebt",
        "_pendingBorrowInterest"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _accrueAccountDebt(address _token, address _account) internal {\n    if (debtOf[_token][_account] > 0) {\n      uint newDebt = _pendingBorrowInterest(_token, _account);\n      _mintDebt(_token, _account, newDebt);\n    }\n  }"
}