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

N-02 Misleading Documentation #1597

Open
wants to merge 1 commit into
base: marketplace-bundle/N-01-redundant-code
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions packages/marketplace/contracts/TransferManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,7 @@ abstract contract TransferManager is Initializable, ITransferManager {
/// @param size The size of the quad
/// @param x The bottom left x coordinate of the quad
/// @param y The bottom left y coordinate of the quad
/// @return the tokenId of the quad
/// @dev this method is gas optimized, must be called with verified x,y and size, after a call to _isValidQuad
/// @return tokenId of the quad
function idInPath(uint256 i, uint256 size, uint256 x, uint256 y) internal pure returns (uint256) {
unchecked {
return (x + (i % size)) + (y + (i / size)) * GRID_SIZE;
Expand Down
Loading