Skip to content

Commit

Permalink
chore: run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kulkarohan committed Sep 27, 2023
1 parent 9a6b85c commit aa824fa
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/nft/ZoraCreator1155Impl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,7 @@ contract ZoraCreator1155Impl is
/// @notice Factory contract
IUpgradeGate internal immutable upgradeGate;

constructor(
address _mintFeeRecipient,
address _upgradeGate,
address _protocolRewards
) ERC1155Rewards(_protocolRewards, _mintFeeRecipient) initializer {
constructor(address _mintFeeRecipient, address _upgradeGate, address _protocolRewards) ERC1155Rewards(_protocolRewards, _mintFeeRecipient) initializer {
upgradeGate = IUpgradeGate(_upgradeGate);
}

Expand Down Expand Up @@ -383,7 +379,7 @@ contract ZoraCreator1155Impl is
}

// Mint the specified tokens
_mint(recipient, tokenId, quantity, data);
_mint(recipient, tokenId, quantity, data);
}

/// @notice Batch mint tokens to a user as the admin or minter
Expand Down

0 comments on commit aa824fa

Please sign in to comment.