Add comment to explain new field

This commit is contained in:
Alvaro 2023-10-26 16:18:14 +02:00
parent e46fea9632
commit befff6ed30

View file

@ -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"`
}