Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
Fixes linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
leeren committed Feb 6, 2024
1 parent fcfcdb0 commit 20c4ce4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/registries/IPAssetRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ contract IPAssetRegistry is IIPAssetRegistry, IPAccountRegistry {
/// @param id The canonical ID of the IP.
/// @param data Canonical metadata to associate with the IP.
function setMetadata(address id, address provider, bytes calldata data) external {
// Canonical metadata is set on registration and immutable thereafter, with new
// Canonical metadata is set on registration and immutable thereafter, with new
// fields only added during a migration to new protocol-approved metadata provider.
if (address(_records[id].metadataProvider) != msg.sender) {
revert Errors.IPAssetRegistry__Unauthorized();
Expand Down Expand Up @@ -250,7 +250,6 @@ contract IPAssetRegistry is IIPAssetRegistry, IPAccountRegistry {
}
}


/// @dev Sets the resolver for the specified IP.
/// @param id The canonical ID of the IP.
/// @param resolverAddr The address of the resolver being set.
Expand Down

0 comments on commit 20c4ce4

Please sign in to comment.