Skip to content

Commit b772ec7

Browse files
committed
Update error message for tracing
1 parent 69bb6f9 commit b772ec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereumetl/jobs/export_traces_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _export_batch(self, block_number_batch):
8989
json_traces = self.web3.parity.traceBlock(block_number)
9090

9191
if json_traces is None:
92-
raise ValueError('Response from the node is None. Is the node fully synced? Is the node started with tracing enabled? Is trace_block method enabled?')
92+
raise ValueError('Response from the node is None. Is the node fully synced? Is the node started with tracing enabled? Is trace_block API enabled?')
9393

9494
traces = [self.trace_mapper.json_dict_to_trace(json_trace) for json_trace in json_traces]
9595
all_traces.extend(traces)

0 commit comments

Comments
 (0)