Skip to content

Commit

Permalink
Merge c98662b into d582922
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrickGT authored Oct 14, 2021
2 parents d582922 + c98662b commit c6e187f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/ControlledToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract ControlledToken is ERC20Permit, IControlledToken {
/* ============ Global Variables ============ */

/// @notice Interface to the contract responsible for controlling mint/burn
address public override controller;
address public immutable override controller;

/// @notice ERC20 controlled token decimals.
uint8 private immutable _decimals;
Expand Down
2 changes: 1 addition & 1 deletion contracts/prize-pool/YieldSourcePrizePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ contract YieldSourcePrizePool is PrizePool {
using Address for address;

/// @notice Address of the yield source.
IYieldSource public yieldSource;
IYieldSource public immutable yieldSource;

/// @dev Emitted when yield source prize pool is deployed.
/// @param yieldSource Address of the yield source.
Expand Down

0 comments on commit c6e187f

Please sign in to comment.