Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
eth/tracers: JSONLogger implement tracers.Tracer
Signed-off-by: jsvisa <[email protected]>
  • Loading branch information
jsvisa committed Nov 20, 2023
commit 2a8b1a8b1af8f9c6cb77d2ea24bd1553d6ac3a36
4 changes: 4 additions & 0 deletions eth/tracers/logger/logger_json.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ func (l *JSONLogger) CaptureExit(output []byte, gasUsed uint64, err error) {}
func (l *JSONLogger) CaptureTxStart(gasLimit uint64) {}

func (l *JSONLogger) CaptureTxEnd(restGas uint64) {}

func (l *JSONLogger) GetResult() (json.RawMessage, error) { return nil, nil }

func (l *JSONLogger) Stop(err error) {}