Skip to content

Commit 4aefc98

Browse files
authored
fixed variable visiblity (#202)
1 parent 35b6cbd commit 4aefc98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/UFragmentsPolicy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ contract UFragmentsPolicy is Ownable {
8383
// Both are 18 decimals fixed point numbers.
8484
uint256 private constant MAX_RATE = 10**6 * 10**DECIMALS;
8585
// MAX_SUPPLY = MAX_INT256 / MAX_RATE
86-
uint256 public constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;
86+
uint256 private constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;
8787

8888
// This module orchestrates the rebase execution and downstream notification.
8989
address public orchestrator;

0 commit comments

Comments
 (0)