Merge pull request #6791 from ethereum/anonymousEvents

Advantages of anynomous events.
This commit is contained in:
chriseth 2019-05-20 15:11:24 +02:00 committed by GitHub
commit c2c44ff739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,9 @@ logs that match a topic with a certain address value:
The hash of the signature of the event is one of the topics, except if you
declared the event with the ``anonymous`` specifier. This means that it is
not possible to filter for specific anonymous events by name.
not possible to filter for specific anonymous events by name, you can
only filter by the contract address. The advantage of anonymous events
is that they are cheaper to deploy and call.
::