We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35b6cbd commit 4aefc98Copy full SHA for 4aefc98
contracts/UFragmentsPolicy.sol
@@ -83,7 +83,7 @@ contract UFragmentsPolicy is Ownable {
83
// Both are 18 decimals fixed point numbers.
84
uint256 private constant MAX_RATE = 10**6 * 10**DECIMALS;
85
// MAX_SUPPLY = MAX_INT256 / MAX_RATE
86
- uint256 public constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;
+ uint256 private constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;
87
88
// This module orchestrates the rebase execution and downstream notification.
89
address public orchestrator;
0 commit comments