Skip to content

Commit

Permalink
chore: fix Solidity linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 committed Sep 3, 2024
1 parent 7382e01 commit 6736a1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions packages/lsp7-contracts/contracts/LSP7DigitalAsset.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.4;

// interfaces
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {
ILSP1UniversalReceiver as ILSP1
} from "@lukso/lsp1-contracts/contracts/ILSP1UniversalReceiver.sol";
Expand Down Expand Up @@ -231,7 +230,7 @@ abstract contract LSP7DigitalAsset is
}

/**
* @inheritdoc IERC165
* @inheritdoc LSP17Extendable
*/
function supportsInterface(
bytes4 interfaceId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import {
} from "@lukso/lsp1-contracts/contracts/ILSP1UniversalReceiver.sol";
import {ILSP7DigitalAsset} from "./ILSP7DigitalAsset.sol";


// modules
import {
EnumerableSet
} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
// TODO: define if we inherit the upgradable version `ERC165CheckerUpgradeable`
import {
ERC165Checker // TODO: define if we inherit the upgradable version
ERC165Checker
} from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
import {
LSP4DigitalAssetMetadataInitAbstract,
Expand Down Expand Up @@ -68,7 +68,7 @@ import {
/**
* @title Proxy Implementation of the LSP7 Digital Asset standard, a contract that represents a fungible token.
* @author Matthew Stevens
*
*
* @dev This contract implement the core logic of the functions for the {ILSP7DigitalAsset} interface.
* Minting and transferring are supplied with a `uint256` amount.
* This implementation is agnostic to the way tokens are created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.12;

// interfaces
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {
ILSP1UniversalReceiver as ILSP1
} from "@lukso/lsp1-contracts/contracts/ILSP1UniversalReceiver.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.12;

// interfaces
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {
ILSP1UniversalReceiver as ILSP1
} from "@lukso/lsp1-contracts/contracts/ILSP1UniversalReceiver.sol";
Expand Down

0 comments on commit 6736a1a

Please sign in to comment.