{
    "Function": "setMaxPoolPriceDifference",
    "File": "src/V3Oracle.sol",
    "Parent Contracts": [
        "src/interfaces/IErrors.sol",
        "lib/openzeppelin-contracts/contracts/access/Ownable.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol",
        "src/interfaces/IV3Oracle.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert InvalidConfig()",
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setMaxPoolPriceDifference(uint16 _maxPoolPriceDifference) external onlyOwner {\n        if (_maxPoolPriceDifference < MIN_PRICE_DIFFERENCE) {\n            revert InvalidConfig();\n        }\n        maxPoolPriceDifference = _maxPoolPriceDifference;\n        emit SetMaxPoolPriceDifference(_maxPoolPriceDifference);\n    }"
}