{
    "Function": "_checkPoolPrice",
    "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": [
        "_getReferencePoolPriceX96",
        "_getPool",
        "_requireMaxDifference"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _checkPoolPrice(address token0, address token1, uint24 fee, uint256 derivedPoolPriceX96) internal view {\n        IUniswapV3Pool pool = _getPool(token0, token1, fee);\n        uint256 priceX96 = _getReferencePoolPriceX96(pool, 0);\n        _requireMaxDifference(priceX96, derivedPoolPriceX96, maxPoolPriceDifference);\n    }"
}