We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527b211 commit 3166d75Copy full SHA for 3166d75
evm_trace/vmtrace.py
@@ -6,11 +6,12 @@
6
from eth.vm.stack import Stack # type: ignore
7
from eth_utils import to_checksum_address
8
from hexbytes import HexBytes
9
+
10
try:
11
from msgspec import Struct # type: ignore
12
from msgspec.json import Decoder # type: ignore
13
except ImportError as e:
- raise ImportError('msgspec not found. install it with `pip install msgspec`') from e
14
+ raise ImportError("msgspec not found. install it with `pip install msgspec`") from e
15
16
# opcodes grouped by the number of items they pop from the stack
17
# fmt: off
0 commit comments