diff --git a/core/plugin_hooks.go b/core/plugin_hooks.go index 5ddde7437..e1a2544bb 100644 --- a/core/plugin_hooks.go +++ b/core/plugin_hooks.go @@ -284,7 +284,7 @@ func PluginGetBlockTracer(pl *plugins.PluginLoader, hash common.Hash, statedb *s func pluginGetBlockTracer(hash common.Hash, statedb *state.StateDB) (*metaTracer, bool) { if plugins.DefaultPluginLoader == nil { log.Warn("Attempting GetBlockTracer, but default PluginLoader has not been initialized") - return &metaTracer{} + return &metaTracer{}, false } return PluginGetBlockTracer(plugins.DefaultPluginLoader, hash, statedb) }