From de953f57144fbe9729a9dd55405da05c44e00b36 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Thu, 4 Nov 2021 17:42:35 +0100 Subject: [PATCH] eth/tracers: minor comment fix --- eth/tracers/tracers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/tracers/tracers.go b/eth/tracers/tracers.go index 03ab8f7bee..79534c6365 100644 --- a/eth/tracers/tracers.go +++ b/eth/tracers/tracers.go @@ -41,7 +41,7 @@ var ( ) // RegisterNativeTracer makes native tracers which adhere -// to the `EVMLogger` interface available to the rest of the codebase. +// to the `Tracer` interface available to the rest of the codebase. // It is typically invoked in the `init()` function, e.g. see the `native/call.go`. func RegisterNativeTracer(name string, ctor func() Tracer) { nativeTracers[name] = ctor