From 450bd5d655fd8fafc00a62e97ae320d3fbe64ba6 Mon Sep 17 00:00:00 2001
From: ledgerwatch <akhounov@gmail.com>
Date: Mon, 6 Sep 2021 16:36:44 +0100
Subject: [PATCH] Not to exclude traces to precompiles on the top level (#2635)

Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
---
 cmd/rpcdaemon/commands/trace_adhoc.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/rpcdaemon/commands/trace_adhoc.go b/cmd/rpcdaemon/commands/trace_adhoc.go
index b45f80ac00..13181432ac 100644
--- a/cmd/rpcdaemon/commands/trace_adhoc.go
+++ b/cmd/rpcdaemon/commands/trace_adhoc.go
@@ -269,7 +269,7 @@ func (ot *OeTracer) CaptureStart(depth int, from common.Address, to common.Addre
 			vmTrace.Code = code
 		}
 	}
-	if precompile {
+	if precompile && depth > 0 {
 		ot.precompile = true
 		return nil
 	}
-- 
GitLab