Skip to content

Commit

Permalink
Merge pull request #31 from neutral-protocol/pin-version
Browse files Browse the repository at this point in the history
Pin contract versions
  • Loading branch information
0xmichalis authored Dec 21, 2023
2 parents ce1afc9 + c852406 commit ff220ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
1 change: 1 addition & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@prb/math/=lib/prb-math/
@openzeppelin=lib/openzeppelin-contracts/
4 changes: 2 additions & 2 deletions src/FeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: UNLICENSED

// If you encounter a vulnerability or an issue, please contact <info@neutralx.com>
pragma solidity ^0.8.13;
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
Expand Down Expand Up @@ -36,7 +36,7 @@ contract FeeCalculator is IFeeCalculator, Ownable {
address[] private _recipients;
uint256[] private _shares;

constructor() Ownable(msg.sender) {}
constructor() Ownable() {}

/// @notice Sets the deposit fee scale.
/// @dev Can only be called by the current owner.
Expand Down

0 comments on commit ff220ff

Please sign in to comment.