From 86fd4f27e2ecbe6c5e6f3d67137e0dc140933fae Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Wed, 15 Sep 2021 16:13:38 -0700 Subject: [PATCH] updated eth/tracers/plugin_hooks.go to reflect attempts to address Wednesday 9/15/21 problems with tracer plugin --- eth/tracers/plugin_hooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/tracers/plugin_hooks.go b/eth/tracers/plugin_hooks.go index 801164f65..1f0e81a5d 100644 --- a/eth/tracers/plugin_hooks.go +++ b/eth/tracers/plugin_hooks.go @@ -13,7 +13,7 @@ import ( func GetPluginTracer(pl *plugins.PluginLoader, name string) (func(*state.StateDB) interfaces.TracerResult, bool) { tracers := pl.Lookup("Tracers", func(item interface{}) bool { - _, ok := item.(*map[string]func(*state.StateDB) interfaces.TracerResult) + _, ok := item.(*map[string]func(core.StateDB) core.TracerResult) if !ok { log.Warn("Found tracer that did not match type", "tracer", reflect.TypeOf(item)) }