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

@ -24,6 +24,12 @@ Any exception or additions specific to our project are documented below.
}
```
The exception are the parameters of events. There is no chance of ambiguity
with these, so they should not have underscores. Not even if they are
specified on an ERC with underscores; removing them doesn't change the ABI,
so we should be consistent with the rest of the events in this repository
and remove them.
* Internal and private state variables should have an underscore suffix.
```