Include tracerConfig in created tracing test

When creating prestate tracer tests in diff mode, the diff mode flag has
to be included in the resulting test JSON. This change makes sure the
flag is included in the JSON when it is passed to makeTest.
This commit is contained in:
Karl Bartel 2024-08-28 15:17:24 +02:00
parent ea3b5095f4
commit 827fa165c1

View file

@ -49,5 +49,6 @@ var makeTest = function(tx, traceConfig) {
context: context, context: context,
input: eth.getRawTransaction(tx), input: eth.getRawTransaction(tx),
result: result, result: result,
tracerConfig: traceConfig.tracerConfig,
}, null, 2)); }, null, 2));
} }