diff --git a/contracts/SBTFactory.sol b/contracts/SBTFactory.sol index 7da49bd..f2f30ee 100644 --- a/contracts/SBTFactory.sol +++ b/contracts/SBTFactory.sol @@ -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(