Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit b6bddba

Browse files
committed
Merge pull request #310 from musalbas/patch-1
API calls should not print results
2 parents 7aa304c + 0be605e commit b6bddba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/abi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def decode(self, name, data):
100100
def is_unknown_type(self, name):
101101
return self.function_data[name]["is_unknown_type"]
102102

103-
def listen(self, log, noprint=False):
103+
def listen(self, log, noprint=True):
104104
if not len(log.topics) or log.topics[0] not in self.event_data:
105105
return
106106
types = self.event_data[log.topics[0]]['types']

0 commit comments

Comments
 (0)