Commit 608961df authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

contracts-governance: make the governance token immutable (#3566)

Slight improvement to the `MintManager`. Making
the reference to the `governanceToken` an immutable
is just better than placing it in storage.
Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent f9660910
......@@ -15,7 +15,7 @@ contract MintManager is Ownable {
/**
* @notice The GovernanceToken that the MintManager can mint tokens
*/
GovernanceToken public governanceToken;
GovernanceToken public immutable governanceToken;
/**
* @notice The amount of tokens that can be minted per year. The value is a fixed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment