From c55a903e7736ea874622f6bd67b835e9e2363d22 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Tue, 2 Nov 2021 16:45:03 +0100 Subject: [PATCH] cmd/geth: load native tracers --- cmd/geth/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index d003d590ed..ecf7840859 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -39,6 +39,10 @@ import ( "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/metrics" "github.com/ethereum/go-ethereum/node" + + // Force-load the native, to trigger registration + _ "github.com/ethereum/go-ethereum/eth/tracers/native" + "gopkg.in/urfave/cli.v1" )