Remove underscores from event parameters. (#1258)

* Remove underscores from event parameters.

Fixes #1175

* Add comment about ERC
This commit is contained in:
Leo Arias
2018-09-03 07:47:22 -06:00
committed by Francisco Giordano
parent 4385fd5a23
commit 964bc4044a
5 changed files with 55 additions and 49 deletions

View File

@ -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);