File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ class GethEvm(EthereumCLI):
96
96
default_binary = Path ("evm" )
97
97
detect_binary_pattern = re .compile (r"^evm(.exe)? version\b" )
98
98
cached_version : Optional [str ] = None
99
+ trace : bool
99
100
100
101
def __init__ (
101
102
self ,
@@ -172,7 +173,9 @@ def __init__(
172
173
if not exception_mapper :
173
174
exception_mapper = GethExceptionMapper ()
174
175
GethEvm .__init__ (self , binary = binary , trace = trace )
175
- TransitionTool .__init__ (self , binary = binary , exception_mapper = exception_mapper )
176
+ TransitionTool .__init__ (
177
+ self , binary = binary , exception_mapper = exception_mapper , trace = trace
178
+ )
176
179
help_command = [str (self .binary ), str (self .subcommand ), "--help" ]
177
180
result = self ._run_command (help_command )
178
181
self .help_string = result .stdout
You can’t perform that action at this time.
0 commit comments