diff options
Diffstat (limited to 'eth')
-rw-r--r-- | eth/tracers/tracer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/tracers/tracer.go b/eth/tracers/tracer.go index 9d6701868..c0729fb1d 100644 --- a/eth/tracers/tracer.go +++ b/eth/tracers/tracer.go @@ -390,7 +390,7 @@ func New(code string) (*Tracer, error) { return 1 }) tracer.vm.PushGlobalGoFunction("isPrecompiled", func(ctx *duktape.Context) int { - _, ok := vm.PrecompiledContractsByzantium[common.BytesToAddress(popSlice(ctx))] + _, ok := vm.PrecompiledContractsIstanbul[common.BytesToAddress(popSlice(ctx))] ctx.PushBoolean(ok) return 1 }) |