{
    "Function": "_updateFee",
    "File": "contracts/lybra/pools/base/LybraPeUSDVaultBase.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_newFee"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _updateFee(address user) internal {\n        if (block.timestamp > feeUpdatedAt[user]) {\n            feeStored[user] += _newFee(user);\n            feeUpdatedAt[user] = block.timestamp;\n        }\n    }"
}