Skip to content

Commit

Permalink
fix: use new constants in subgraphservice.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonBoi9001 committed Sep 30, 2024
1 parent 4d3a5cf commit cc4f315
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ abstract contract ProvisionManager is Initializable, GraphDirectory, ProvisionMa

// Constants
uint32 private constant DEFAULT_MIN_VERIFIER_CUT = type(uint32).min;
uint32 private constant DEFAULT_MAX_VERIFIER_CUT = uint32(PPMMath.MAX_PPM);
uint32 internal constant DEFAULT_MAX_VERIFIER_CUT = uint32(PPMMath.MAX_PPM);
uint64 private constant DEFAULT_MIN_THAWING_PERIOD = type(uint64).min;
uint64 private constant DEFAULT_MAX_THAWING_PERIOD = type(uint64).max;
uint64 internal constant DEFAULT_MAX_THAWING_PERIOD = type(uint64).max;
uint256 private constant DEFAULT_MIN_PROVISION_TOKENS = type(uint256).min;
uint256 private constant DEFAULT_MAX_PROVISION_TOKENS = type(uint256).max;
uint256 internal constant DEFAULT_MAX_PROVISION_TOKENS = type(uint256).max;

/**
* @notice Emitted when the provision tokens range is set.
Expand Down

0 comments on commit cc4f315

Please sign in to comment.