We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59ddb23 + dcdc776 commit d251f21Copy full SHA for d251f21
ethereumetl/service/token_transfer_extractor.py
@@ -40,7 +40,7 @@ def extract_transfer_from_log(self, receipt_log):
40
# This is normal, topics can be empty for anonymous events
41
return None
42
43
- if topics[0] == TRANSFER_EVENT_TOPIC:
+ if (topics[0]).casefold() == TRANSFER_EVENT_TOPIC:
44
# Handle unindexed event fields
45
topics_with_data = topics + split_to_words(receipt_log.data)
46
# if the number of topics and fields in data part != 4, then it's a weird event
0 commit comments