Skip to content

Commit

Permalink
fix: mark visibility of public variable
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Jun 6, 2024
1 parent 6ecf8bd commit e459597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ReservoirPriceOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e459597

Please sign in to comment.