Skip to content

Commit 005e3fe

Browse files
committed
lint
1 parent 028a47d commit 005e3fe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

contracts/SBTFactory.sol

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ contract SBTFactory is ISBTFactory, OwnableUpgradeable {
2727
address[] calldata minters,
2828
bytes calldata identifier
2929
) external override onlyOwner returns (address) {
30-
require(sbtProxyMapping[identifier] == address(0), "Identifier already used");
30+
require(
31+
sbtProxyMapping[identifier] == address(0),
32+
"Identifier already used"
33+
);
3134

3235
// Create the implementation.
3336
address implementation = address(

0 commit comments

Comments
 (0)