Skip to content

Commit

Permalink
remove dbg prints
Browse files Browse the repository at this point in the history
  • Loading branch information
soundsonacid committed Aug 8, 2024
1 parent 507bc13 commit b89c82c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/driftpy/events/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,10 @@ def handle_program_log(
try:
decoded = base64.b64decode(log_str)
except binascii.Error:
# print("binascii error")
# print(log_str)
# print("log str ^^")
return (None, None, False)
if len(decoded) < 8:
# print("anchorpy error")
return (None, None, False)
event = program.coder.events.parse(decoded)
# print(event)
return (event, None, False)
else:
return (None, *handle_system_log(log))
Expand Down

0 comments on commit b89c82c

Please sign in to comment.