We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7952e32 commit 8fdc8deCopy full SHA for 8fdc8de
src/ape/api/transactions.py
@@ -245,7 +245,7 @@ def decode_logs(
245
try:
246
event_abi = contract_type.events[log["topics"][0]] # type: ignore
247
yield from self.provider.network.ecosystem.decode_logs(event_abi, [log])
248
- except (StopIteration, KeyError):
+ except (StopIteration, KeyError, DecodingError):
249
250
yield self.provider.network.ecosystem.decode_ds_note(log) # type: ignore
251
except (DecodingError, AttributeError):
0 commit comments