From e459597ca063727a719eb1985c6ae024a935a9d8 Mon Sep 17 00:00:00 2001 From: "A.L." Date: Thu, 6 Jun 2024 22:40:31 +0200 Subject: [PATCH] fix: mark visibility of public variable --- src/ReservoirPriceOracle.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReservoirPriceOracle.sol b/src/ReservoirPriceOracle.sol index 776e945..24fce16 100644 --- a/src/ReservoirPriceOracle.sol +++ b/src/ReservoirPriceOracle.sol @@ -58,7 +58,7 @@ contract ReservoirPriceOracle is IPriceOracle, IReservoirPriceOracle, Owned(msg. uint64 public twapPeriod; /// @notice The type of price queried and stored, possibilities as defined by `PriceType`. - PriceType priceType; + PriceType public priceType; /// @notice Designated pairs to serve as price feed for a certain token0 and token1 mapping(address token0 => mapping(address token1 => ReservoirPair pair)) public pairs;