mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
8 lines
291 B
JavaScript
8 lines
291 B
JavaScript
{
|
|
// required function that is invoked when a step fails
|
|
fault: function(log, db) { },
|
|
// required function that returns the result of the tracer: empty object
|
|
result: function(ctx, db) { return {}; },
|
|
// optional function that is invoked for every opcode
|
|
step: function(log, db) { }
|
|
} |