File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ interface IERC165 {
2222 * This function call must use less than 30 000 gas.
2323 */
2424 function supportsInterface (bytes4 interfaceId ) external view returns (bool );
25- }
25+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ abstract contract PlatformFee is IPlatformFee {
1616 }
1717
1818 /// @dev Lets a contract admin update the platform fee recipient and bps
19- function setPlatformFeeInfo (address _platformFeeRecipient , uint256 _platformFeeBps ) public override {
19+ function setPlatformFeeInfo (address _platformFeeRecipient , uint256 _platformFeeBps ) public override {
2020 require (_canSetPlatformFeeInfo (), "Not authorized " );
2121 require (_platformFeeBps <= 10_000 , "Exceeds max bps " );
2222
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ abstract contract PrimarySale is IPrimarySale {
1212 }
1313
1414 /// @dev Lets a contract admin set the recipient for all primary sales.
15- function setPrimarySaleRecipient (address _saleRecipient ) public override {
15+ function setPrimarySaleRecipient (address _saleRecipient ) public override {
1616 require (_canSetPrimarySaleRecipient (), "Not authorized " );
1717
1818 recipient = _saleRecipient;
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ interface IMulticall {
1313 * @dev Receives and executes a batch of function calls on this contract.
1414 */
1515 function multicall (bytes [] calldata data ) external returns (bytes [] memory results );
16- }
16+ }
You can’t perform that action at this time.
0 commit comments