Skip to content

Commit 27902cc

Browse files
committed
fix: add visibility to managed immutable vars
Signed-off-by: Tomás Migone <[email protected]>
1 parent 1f85e12 commit 27902cc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

contracts/governance/Managed.sol

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ contract Managed {
2929
uint256[10] private __gap;
3030

3131
// Immutables
32-
bytes32 immutable CURATION = keccak256("Curation");
33-
bytes32 immutable EPOCH_MANAGER = keccak256("EpochManager");
34-
bytes32 immutable REWARDS_MANAGER = keccak256("RewardsManager");
35-
bytes32 immutable STAKING = keccak256("Staking");
36-
bytes32 immutable GRAPH_TOKEN = keccak256("GraphToken");
37-
bytes32 immutable GRAPH_TOKEN_GATEWAY = keccak256("GraphTokenGateway");
32+
bytes32 private immutable CURATION = keccak256("Curation");
33+
bytes32 private immutable EPOCH_MANAGER = keccak256("EpochManager");
34+
bytes32 private immutable REWARDS_MANAGER = keccak256("RewardsManager");
35+
bytes32 private immutable STAKING = keccak256("Staking");
36+
bytes32 private immutable GRAPH_TOKEN = keccak256("GraphToken");
37+
bytes32 private immutable GRAPH_TOKEN_GATEWAY = keccak256("GraphTokenGateway");
3838

3939
// -- Events --
4040

0 commit comments

Comments
 (0)