Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster-will committed Dec 12, 2024
1 parent 3dba9dc commit c3fc7ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 1 addition & 5 deletions contracts/lib/Errors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,7 @@ library Errors {
);

/// @notice licensing hook data configured in IP must be identical to the group licensing hook data.
error LicenseRegistry__IpLicensingHookDataNotMatchWithGroup(
address ipId,
bytes hookData,
bytes groupHookData
);
error LicenseRegistry__IpLicensingHookDataNotMatchWithGroup(address ipId, bytes hookData, bytes groupHookData);

/// @notice commercial revenue share configured in group must be NOT less than the IP commercial revenue share.
error LicenseRegistry__GroupIpCommercialRevShareConfigMustNotLessThanIp(
Expand Down
1 change: 1 addition & 0 deletions contracts/registries/LicenseRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ contract LicenseRegistry is ILicenseRegistry, AccessManagedUpgradeable, UUPSUpgr
/// @param groupLicenseTermsId The ID of the license terms attached to the group.
/// the IP must have this license terms.
/// @return ipLicensingConfig The configuration for license attached to the IP.
// solhint-disable code-complexity
function verifyGroupAddIp(
address groupId,
address groupRewardPool,
Expand Down

0 comments on commit c3fc7ea

Please sign in to comment.