Skip to content

Commit

Permalink
Merge pull request #15 from ChorusOne/update_openzeppelin
Browse files Browse the repository at this point in the history
Update OpenZeppelin contracts
  • Loading branch information
enriquefynn authored Jan 18, 2024
2 parents fc41e18 + a8fbd41 commit 06e20a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
2 changes: 1 addition & 1 deletion src/FeeRewardsManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract RewardsCollector {
contract FeeRewardsManager is Ownable2Step {
uint32 public defaultFeeNumerator;

constructor(uint32 _defaultFeeNumerator) {
constructor(uint32 _defaultFeeNumerator) Ownable(msg.sender) {
// Do not let fee be > 1 (with 10_000 denominator).
require(_defaultFeeNumerator <= 10_000, "Invalid fee numerator");
defaultFeeNumerator = _defaultFeeNumerator;
Expand Down

0 comments on commit 06e20a5

Please sign in to comment.