// SPDX-License-Identifier: UNLICENSED // Gearbox Protocol. Generalized leverage for DeFi protocols // (c) Gearbox Holdings, 2022 pragma solidity ^0.8.10; /** * @title Address Provider that returns ACL and isConfigurator * @notice this contract is used to test LPPriceFeeds */ contract AddressProviderACLMock { address public owner; address public getACL; mapping(address => bool) public isConfigurator; address public getPriceOracle; mapping(address => address) public priceFeeds; constructor() { owner = msg.sender; getACL = address(this); getPriceOracle = address(this); isConfigurator[msg.sender] = true; } function setPriceFeed(address token, address feed) external { priceFeeds[token] = feed; } }