Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/UFragmentsPolicy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ contract UFragmentsPolicy is Ownable {
// Both are 18 decimals fixed point numbers.
uint256 private constant MAX_RATE = 10**6 * 10**DECIMALS;
// MAX_SUPPLY = MAX_INT256 / MAX_RATE
uint256 public constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;
uint256 private constant MAX_SUPPLY = uint256(type(int256).max) / MAX_RATE;

// This module orchestrates the rebase execution and downstream notification.
address public orchestrator;
Expand Down