fix: comments

This commit is contained in:
Josh Stevens
2024-01-31 15:08:47 +00:00
parent bcb95567d5
commit 1e8e30150e

View File

@@ -12,7 +12,7 @@ import {ITokenHandleRegistry} from 'contracts/interfaces/ITokenHandleRegistry.so
/**
* @title PermissonlessCreator
* @author Lens Protocol
* @notice This is an ownable public proxy contract that enforces ".lens" handle suffixes at profile creation but is open for all.
* @notice This is an ownable public proxy contract which is open for all.
*/
contract PermissonlessCreator is Ownable {
ILensHandles public immutable LENS_HANDLES;
@@ -120,7 +120,6 @@ contract PermissonlessCreator is Ownable {
uint256 _handleId = LENS_HANDLES.mintHandle(address(this), handle);
TOKEN_HANDLE_REGISTRY.link({handleId: _handleId, profileId: linkToProfileId});
// Transfer the handle & profile to the destination
LENS_HANDLES.transferFrom(address(this), to, _handleId);
return _handleId;