eth/tracers: minor comment fix

This commit is contained in:
Sina Mahmoodi
2021-11-04 17:42:35 +01:00
parent 4e2de461d7
commit de953f5714

View File

@ -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