From befff6ed30e1841d85a4136893318f65f19e6198 Mon Sep 17 00:00:00 2001 From: Alvaro Date: Thu, 26 Oct 2023 16:18:14 +0200 Subject: [PATCH] Add comment to explain new field --- eth/tracers/native/call.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index 31a8bade01..c3b572a28a 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -40,6 +40,8 @@ type callLog struct { Address common.Address `json:"address"` Topics []common.Hash `json:"topics"` Data hexutil.Bytes `json:"data"` + // Position of the log relative to subcalls within the same trace + // See https://github.com/ethereum/go-ethereum/pull/28389 for details Position int `json:"position"` }