Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Mar 31, 2023
1 parent 348255b commit a36b399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/SoulboundIdentity.sol
Expand Up @@ -53,7 +53,7 @@ contract SoulboundIdentity is

/// @notice Mints a new soulbound identity
/// @dev The caller can only mint one identity per address
/// @param to Address of the admin of the new identity
/// @param to Address of the owner of the new identity
function mint(address to) public override returns (uint256) {
// Soulbound identity already created!
if (balanceOf(to) > 0) revert IdentityAlreadyCreated(to);
Expand All @@ -63,7 +63,7 @@ contract SoulboundIdentity is

/// @notice Mints a new soulbound identity with a SoulName associated to it
/// @dev The caller can only mint one identity per address, and the name must be unique
/// @param to Address of the admin of the new identity
/// @param to Address of the owner of the new identity
/// @param name Name of the new identity
/// @param yearsPeriod Years of validity of the name
/// @param _tokenURI URI of the NFT
Expand Down

0 comments on commit a36b399

Please sign in to comment.