Skip to content

Commit

Permalink
fix: update for reference
Browse files Browse the repository at this point in the history
  • Loading branch information
fakenickels committed Nov 26, 2021
1 parent 8ad0e84 commit 9bd7871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/KittensHD.sol
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ contract KittensHD is
override(IERC2981)
returns (address receiver, uint256 royaltyAmount)
{
uint256 _royalties = (_salePrice * (royaltiesPercentage / 100));
uint256 _royalties = ((_salePrice * royaltiesPercentage) / 100);
return (depositAddress, _royalties);
}
}

0 comments on commit 9bd7871

Please sign in to comment.