Commit f0eea31b by Kazuki YAMAGUCHI Committed by Matt Condon

Fix ERC721Token.sol code indent (#909)

parent ce0a928a
...@@ -18,7 +18,7 @@ contract ERC721Token is ERC721, ERC721BasicToken { ...@@ -18,7 +18,7 @@ contract ERC721Token is ERC721, ERC721BasicToken {
string internal symbol_; string internal symbol_;
// Mapping from owner to list of owned token IDs // 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 from token ID to index of the owner tokens list
mapping(uint256 => uint256) internal ownedTokensIndex; mapping(uint256 => uint256) internal ownedTokensIndex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment