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

Commit 5e546ca

Browse files
committed
Don't print logs by default.
1 parent 8f5eea7 commit 5e546ca

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)