Skip to content

Commit bdfc4c5

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
run prettier
1 parent 66b964e commit bdfc4c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/eip/interface/IERC165.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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+
}

contracts/feature/PlatformFee.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

contracts/feature/PrimarySale.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

contracts/feature/interface/IMulticall.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)