Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mihanix committed Dec 14, 2023
1 parent b08c98a commit 9e76c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/autid/AutID.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ contract AutID is IAutID, AutIDUtils, ERC721URIStorageUpgradeable, OwnableUpgrad
/// @inheritdoc IAutID
function joinNova(uint256 role, uint256 commitment, address nova) public {
address account = _msgSender();
_revertForZeroAddress(account);
uint256 tokenId = tokenIdForAccount[account];
_revertInvalidTokenId(tokenId);

Expand Down Expand Up @@ -119,6 +120,5 @@ contract AutID is IAutID, AutIDUtils, ERC721URIStorageUpgradeable, OwnableUpgrad
emit RecordCreated(tokenId, account, username_, optionalURI);
}


uint256[45] private __gap;
}

0 comments on commit 9e76c39

Please sign in to comment.