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 ac87ff1 commit a028321Copy full SHA for a028321
chainbench/main.py
@@ -293,6 +293,9 @@ def start(
293
for tag in exclude_tags:
294
custom_exclude_tags.append(tag)
295
296
+ if not debug_trace_methods:
297
+ custom_exclude_tags = custom_exclude_tags + ["trace", "debug"]
298
+
299
locust_options = LocustOptions(
300
profile_path=profile_path,
301
host=host,
chainbench/profile/ethereum/general.py
@@ -86,6 +86,7 @@ def trace_transaction_task(self):
86
self.make_rpc_call(
87
name="trace_transaction",
88
method="debug_traceTransaction",
89
+ params=self._transaction_by_hash_params_factory(get_rng()),
90
),
91
92
@task(2)
0 commit comments