{
    "Function": "setMaxAnswer",
    "File": "src/mcag-contracts/MCAGAggregator.sol",
    "Parent Contracts": [
        "src/mcag-contracts/interfaces/MCAGAggregatorInterface.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyRole",
        "onlyRole"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setMaxAnswer(int256 newMaxAnswer) external onlyRole(Roles.MCAG_MANAGER_ROLE) {\n        emit MaxAnswerSet(_maxAnswer, newMaxAnswer);\n        _maxAnswer = newMaxAnswer;\n    }"
}