Skip to content

Commit

Permalink
chore: refactor evmspec
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 4, 2024
1 parent 09a12f2 commit 0cb970b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions y/utils/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
EventDict,
)
from eth_typing import ChecksumAddress
from evmspec.log import Log
from evmspec import Log
from msgspec.structs import force_setattr
from toolz import groupby
from web3.middleware.filter import block_ranges
Expand Down Expand Up @@ -71,7 +71,7 @@ def decode_logs(logs: Union[Iterable[LogReceipt], Iterable[Log]]) -> EventDict:
Decode logs to events and enrich them with additional info.
Args:
logs: An iterable of :class:`~web3.types.LogReceipt` or :class:`~evmspec.log.Log` objects.
logs: An iterable of :class:`~web3.types.LogReceipt` or :class:`~evmspec.structs.log.Log` objects.
Returns:
An :class:`~brownie.network.event.EventDict` containing decoded events.
Expand Down

0 comments on commit 0cb970b

Please sign in to comment.