Remove underscores from event parameters. (#1258)
* Remove underscores from event parameters. Fixes #1175 * Add comment about ERC
This commit is contained in:
committed by
Francisco Giordano
parent
4385fd5a23
commit
964bc4044a
@ -40,19 +40,19 @@ contract IERC721Basic is IERC165 {
|
||||
*/
|
||||
|
||||
event Transfer(
|
||||
address indexed _from,
|
||||
address indexed _to,
|
||||
uint256 indexed _tokenId
|
||||
address indexed from,
|
||||
address indexed to,
|
||||
uint256 indexed tokenId
|
||||
);
|
||||
event Approval(
|
||||
address indexed _owner,
|
||||
address indexed _approved,
|
||||
uint256 indexed _tokenId
|
||||
address indexed owner,
|
||||
address indexed approved,
|
||||
uint256 indexed tokenId
|
||||
);
|
||||
event ApprovalForAll(
|
||||
address indexed _owner,
|
||||
address indexed _operator,
|
||||
bool _approved
|
||||
address indexed owner,
|
||||
address indexed operator,
|
||||
bool approved
|
||||
);
|
||||
|
||||
function balanceOf(address _owner) public view returns (uint256 _balance);
|
||||
|
||||
Reference in New Issue
Block a user