Skip to content

Commit

Permalink
Merge pull request #280 from pooltogether/pool-2302-analyze-impact-of…
Browse files Browse the repository at this point in the history
…-swapping

fix(DrawCalcV3): set gaugeController as immutable
  • Loading branch information
PierrickGT committed Jun 2, 2022
2 parents a19029d + daacfe5 commit 426e05a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/DrawCalculatorV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ contract DrawCalculatorV3 is IDrawCalculatorV3, Manageable {

/* ============ Variables ============ */

/// @notice GaugeController address
IGaugeController public gaugeController;

/// @notice DrawBuffer address
IDrawBuffer public immutable drawBuffer;
IDrawBuffer internal immutable drawBuffer;

/// @notice GaugeController address
IGaugeController internal immutable gaugeController;

/// @notice PrizeConfigHistory address
IPrizeConfigHistory public immutable prizeConfigHistory;
IPrizeConfigHistory internal immutable prizeConfigHistory;

/// @notice The tiers array length
uint8 public constant TIERS_LENGTH = 16;
Expand Down

0 comments on commit 426e05a

Please sign in to comment.