Skip to content

Commit 020d238

Browse files
committed
Run lint
1 parent a1d0bbc commit 020d238

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/token/ERC20/extensions/ERC4626.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ abstract contract ERC4626 is ERC20, IERC4626 {
270270
function _isVaultCollateralized() private view returns (bool) {
271271
return totalAssets() > 0 || totalSupply() == 0;
272272
}
273-
}
273+
}

contracts/token/ERC721/ERC721.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,4 +500,4 @@ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
500500
uint256 firstTokenId,
501501
uint256 batchSize
502502
) internal virtual {}
503-
}
503+
}

contracts/token/ERC721/extensions/ERC721Pausable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ abstract contract ERC721Pausable is ERC721, Pausable {
3131

3232
require(!paused(), "ERC721Pausable: token transfer while paused");
3333
}
34-
}
34+
}

contracts/token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ contract ERC721PresetMinterPauserAutoId is
137137
{
138138
return super.supportsInterface(interfaceId);
139139
}
140-
}
140+
}

0 commit comments

Comments
 (0)