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

Commit

Permalink
additional lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Spablob committed Feb 18, 2024
1 parent ae6313c commit 2de5e1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ interface IRoyaltyPolicyLAP is IRoyaltyPolicy {
/// @return isUnlinkable Indicates if the ipId is unlinkable to new parents
/// @return splitClone The address of the liquid split clone contract for a given ipId
/// @return ancestorsVault The address of the ancestors vault contract for a given ipId
/// @return royaltyStack The royalty stack for a given ipId is the sum of the royalties to be paid to all its ancestors
/// @return royaltyStack The royalty stack of a given ipId is the sum of the royalties to be paid to each ancestors
/// @return ancestorsHash The hash of the unique ancestors addresses and royalties arrays
function royaltyData(
address ipId
Expand Down Expand Up @@ -107,7 +107,7 @@ interface IRoyaltyPolicyLAP is IRoyaltyPolicy {
/// @param token The token to withdraw
function claimFromIpPoolAsTotalRnftOwner(address ipId, uint256 withdrawETH, address token) external;

/// @notice Claims all available royalty nfts and accrued royalties for an ancestor of a given ipId
/// @notice Claims available royalty nfts and accrued royalties for an ancestor of a given ipId
/// @param ipId The ipId of the ancestors vault to claim from
/// @param claimerIpId The claimer ipId is the ancestor address that wants to claim
/// @param ancestors The ancestors for the selected ipId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract RoyaltyPolicyLAP is IRoyaltyPolicyLAP, Governable, ERC1155Holder, Reent
/// @param isUnlinkableToParents Indicates if the ipId is unlinkable to new parents
/// @param splitClone The address of the liquid split clone contract for a given ipId
/// @param ancestorsVault The address of the ancestors vault contract for a given ipId
/// @param royaltyStack The royalty stack for a given ipId is the sum of the royalties to be paid to all its ancestors
/// @param royaltyStack The royalty stack of a given ipId is the sum of the royalties to be paid to each ancestors
/// @param ancestorsHash The hash of the unique ancestors addresses and royalties arrays
struct LAPRoyaltyData {
bool isUnlinkableToParents;
Expand Down

0 comments on commit 2de5e1b

Please sign in to comment.