Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Unused childIpOwner Parameter from Internal Functions in LicensingModule #343

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions contracts/modules/licensing/LicensingModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ contract LicensingModule is
parentIpIds,
licenseTermsIds,
licenseTemplate,
childIpOwner,
royaltyContext,
maxMintingFee,
maxRts
Expand Down Expand Up @@ -497,7 +496,6 @@ contract LicensingModule is
address[] calldata parentIpIds,
uint256[] calldata licenseTermsIds,
address licenseTemplate,
address childIpOwner,
bytes calldata royaltyContext,
uint256 maxMintingFee,
uint32 maxRts
Expand All @@ -508,7 +506,6 @@ contract LicensingModule is
parentIpIds,
licenseTermsIds,
licenseTemplate,
childIpOwner,
royaltyContext,
maxMintingFee
);
Expand Down Expand Up @@ -557,7 +554,6 @@ contract LicensingModule is
address[] calldata parentIpIds,
uint256[] calldata licenseTermsIds,
address licenseTemplate,
address childIpOwner,
bytes calldata royaltyContext,
uint256 maxMintingFee
) private returns (address[] memory royaltyPolicies, uint32[] memory royaltyPercents) {
Expand All @@ -570,7 +566,6 @@ contract LicensingModule is
parentIpIds[i],
licenseTemplate,
licenseTermsIds[i],
childIpOwner,
royaltyContext,
maxMintingFee
);
Expand All @@ -584,7 +579,6 @@ contract LicensingModule is
address parentIpId,
address licenseTemplate,
uint256 licenseTermsId,
address childIpOwner,
bytes calldata royaltyContext,
uint256 maxMintingFee
) private returns (address royaltyPolicy, uint32 royaltyPercent) {
Expand Down
Loading