Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aggre committed Mar 27, 2024
1 parent 028a47d commit 005e3fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/SBTFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ contract SBTFactory is ISBTFactory, OwnableUpgradeable {
address[] calldata minters,
bytes calldata identifier
) external override onlyOwner returns (address) {
require(sbtProxyMapping[identifier] == address(0), "Identifier already used");
require(
sbtProxyMapping[identifier] == address(0),
"Identifier already used"
);

// Create the implementation.
address implementation = address(
Expand Down

0 comments on commit 005e3fe

Please sign in to comment.