style: use the max-len solidity rule (#944)
This commit is contained in:
@ -9,7 +9,14 @@ import "./ERC721Basic.sol";
|
||||
*/
|
||||
contract ERC721Enumerable is ERC721Basic {
|
||||
function totalSupply() public view returns (uint256);
|
||||
function tokenOfOwnerByIndex(address _owner, uint256 _index) public view returns (uint256 _tokenId);
|
||||
function tokenOfOwnerByIndex(
|
||||
address _owner,
|
||||
uint256 _index
|
||||
)
|
||||
public
|
||||
view
|
||||
returns (uint256 _tokenId);
|
||||
|
||||
function tokenByIndex(uint256 _index) public view returns (uint256);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user