Fix ERC721Token.sol code indent (#909)

This commit is contained in:
Kazuki YAMAGUCHI
2018-05-08 03:39:54 +09:00
committed by Matt Condon
parent ce0a928a6c
commit f0eea31bdf

View File

@ -18,7 +18,7 @@ contract ERC721Token is ERC721, ERC721BasicToken {
string internal symbol_;
// Mapping from owner to list of owned token IDs
mapping (address => uint256[]) internal ownedTokens;
mapping(address => uint256[]) internal ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) internal ownedTokensIndex;