{
    "Function": "_accrueInterest",
    "File": "contracts/LendingPair.sol",
    "Parent Contracts": [
        "contracts/TransferHelper.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_borrowRatePerBlock"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _accrueInterest(address _token) internal {\n    uint blocksElapsed = block.number - lastBlockAccrued;\n    uint newInterest = _borrowRatePerBlock(_token) * blocksElapsed;\n    cumulativeInterestRate[_token] += newInterest;\n  }"
}