{
    "Function": "inflationControl",
    "File": "governance/contracts/OLAS.sol",
    "Parent Contracts": [
        "governance/lib/solmate/src/tokens/ERC20.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "inflationRemainder"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function inflationControl(uint256 amount) public view returns (bool) {\n        uint256 remainder = inflationRemainder();\n        return (amount <= remainder);\n    }"
}